Skip to content

Commit

Permalink
fix(ui): bulk delete was not filtering
Browse files Browse the repository at this point in the history
closes #2107
  • Loading branch information
brian-mulier-p committed Sep 14, 2023
1 parent ad54f84 commit e861adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/stores/flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export default {
return this.$http.delete("/api/v1/flows/delete/by-ids", {data: options.ids})
},
deleteFlowByQuery(_, options) {
return this.$http.delete("/api/v1/flows/delete/by-query", options, {params: options})
return this.$http.delete("/api/v1/flows/delete/by-query", {params: options})
},
validateFlow({commit}, options) {
return axios.post(`${apiRoot}flows/validate`, options.flow, textYamlHeader)
Expand Down

0 comments on commit e861adc

Please sign in to comment.