Skip to content

Commit

Permalink
fix(ui): avoid dashboard blinking on flow create
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Nov 22, 2024
1 parent 6aafbf3 commit 300d986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/flows/FlowRoot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@
return this.getTabs();
},
ready() {
return this.user !== undefined && this.flow !== undefined;
return this.user && this.flow;
},
isAllowedEdit() {
if (!this.flow || !this.user) {
Expand Down

0 comments on commit 300d986

Please sign in to comment.