Skip to content

Commit

Permalink
Fix the object values
Browse files Browse the repository at this point in the history
  • Loading branch information
DomiiBunn committed Jul 26, 2024
1 parent 2ac01fa commit d7ab665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/StackList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ export default {
},
updateAll() {
for (let stack of this.$root.completeStackList) {
for (let stack of Object.values(this.$root.completeStackList)) {
this.$root.emitAgent(stack.endpoint, "updateStack", stack.name, (res) => {
this.processing = false;
this.$root.toastRes(res);
Expand Down

0 comments on commit d7ab665

Please sign in to comment.