Skip to content

Commit

Permalink
✨ : allow running stacks to be updated
Browse files Browse the repository at this point in the history
in case of the module changes, users should be able to manually update a
stack
  • Loading branch information
juwit committed Jul 4, 2022
1 parent e9fb489 commit cb178ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/client/app/pages/stacks/stack-edition.vue
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
return this.stack.state !== 'ARCHIVED' && (this.stack.state === 'RUNNING' || this.stack.state === 'TO_UPDATE');
},
canUpdateStack() {
return this.stack.state !== 'ARCHIVED' && this.stack.state === 'TO_UPDATE';
return this.canStopStack;
},
canArchiveStack() {
return this.stack.state !== 'ARCHIVED';
Expand Down

0 comments on commit cb178ef

Please sign in to comment.