Skip to content

Commit

Permalink
feat(ui): add flow validation to FlowCreate component (#6370)
Browse files Browse the repository at this point in the history
  • Loading branch information
elevatebart committed Dec 9, 2024
1 parent 716b8db commit e0b89dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/flows/FlowCreate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
:flow-id="flowParsed?.id"
:namespace="flowParsed?.namespace"
:is-creating="true"
:flow-validation="flowValidation"
:flow-graph="flowGraph"
:is-read-only="false"
:is-dirty="true"
Expand Down Expand Up @@ -74,11 +75,10 @@ tasks:
sourceWrapper() {
return {source: this.source};
},
...mapState("flow", ["flowGraph", "total"]),
...mapState("auth", ["user"]),
...mapState("plugin", ["pluginSingleList", "pluginsDocumentation"]),
...mapGetters("core", ["guidedProperties"]),
...mapGetters("flow", ["flow", "flowValidation"]),
...mapGetters("flow", ["flow", "flowValidation", "flowGraph", "total"]),
routeInfo() {
return {
title: this.$t("flows")
Expand Down

0 comments on commit e0b89dc

Please sign in to comment.