Use the store instead of the sorted list

This commit is contained in:
Dominika Jadowska 2024-07-26 20:53:51 +02:00
parent 643dbfa39f
commit 2d1fecc370

View file

@ -355,7 +355,7 @@ export default {
},
updateAll() {
for (let stack of this.sortedStackList) {
for (let stack of this.$root.completeStackList) {
this.$root.emitAgent(stack.endpoint, "updateStack", stack.name, (res) => {
this.processing = false;
this.$root.toastRes(res);