diff --git a/ui/src/components/flows/FlowCreate.vue b/ui/src/components/flows/FlowCreate.vue index 4a4b41fb36a..94cc43264b4 100644 --- a/ui/src/components/flows/FlowCreate.vue +++ b/ui/src/components/flows/FlowCreate.vue @@ -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" @@ -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")