mirror of https://github.com/Fabio286/antares.git
fix: unable to add parameters to new routines/functions
This commit is contained in:
parent
88eb9f7ab8
commit
350d53642e
|
@ -16,7 +16,7 @@
|
|||
</div>
|
||||
<a class="btn btn-clear float-right" @click="hideModal" />
|
||||
</div>
|
||||
<div v-if="hasBody" class="modal-body">
|
||||
<div v-if="hasBody" class="modal-body pb-0">
|
||||
<a
|
||||
v-if="!hasHeader && !hasDefault"
|
||||
class="btn btn-clear float-right"
|
||||
|
@ -26,7 +26,7 @@
|
|||
<slot name="body" />
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="!hideFooter" class="modal-footer pt-0">
|
||||
<div v-if="!hideFooter" class="modal-footer">
|
||||
<button
|
||||
class="btn btn-primary mr-2"
|
||||
@click.stop="confirmModal"
|
||||
|
|
|
@ -181,7 +181,10 @@ export default {
|
|||
ConfirmModal
|
||||
},
|
||||
props: {
|
||||
localParameters: Array,
|
||||
localParameters: {
|
||||
type: Array,
|
||||
default: () => []
|
||||
},
|
||||
func: String,
|
||||
workspace: Object
|
||||
},
|
||||
|
|
|
@ -181,7 +181,10 @@ export default {
|
|||
ConfirmModal
|
||||
},
|
||||
props: {
|
||||
localParameters: Array,
|
||||
localParameters: {
|
||||
type: Array,
|
||||
default: () => []
|
||||
},
|
||||
routine: String,
|
||||
workspace: Object
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue