mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-29 09:00:26 -05:00
@@ -255,7 +255,7 @@
|
||||
},
|
||||
loadData() {
|
||||
this.$store
|
||||
.dispatch("trigger/find", {namespace: this.flow.namespace, flowId: this.flow.id})
|
||||
.dispatch("trigger/find", {namespace: this.flow.namespace, flowId: this.flow.id, size: this.triggersWithType.length})
|
||||
.then(triggers => this.triggers = triggers.results);
|
||||
},
|
||||
setBackfillModal(trigger, bool) {
|
||||
|
||||
@@ -17,7 +17,7 @@ export default {
|
||||
return (await this.$http.post(`${apiUrl(this)}/triggers/${options.namespace}/${options.flowId}/${options.triggerId}/unlock`)).data;
|
||||
},
|
||||
find({_commit}, options) {
|
||||
return this.$http.get(`${apiUrl(this)}/triggers/${options.namespace}/${options.flowId}`).then(response => {
|
||||
return this.$http.get(`${apiUrl(this)}/triggers/${options.namespace}/${options.flowId}`, {params: options}).then(response => {
|
||||
return response.data;
|
||||
})
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user