From 931219850e2e4ccb527224a5cfe0541fc5f31228 Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Wed, 6 Aug 2025 11:01:57 +0200 Subject: [PATCH] Fix wrong freezing of Vuex data. It's the sequence items themselves that benefit from freezing, not the sequence array itself. --- lib/www/client/source/src/store/modules/plan/state.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/www/client/source/src/store/modules/plan/state.js b/lib/www/client/source/src/store/modules/plan/state.js index 998bbb0..1d908f3 100644 --- a/lib/www/client/source/src/store/modules/plan/state.js +++ b/lib/www/client/source/src/store/modules/plan/state.js @@ -1,5 +1,5 @@ const state = () => ({ - sequences: Object.freeze([]), + sequences: [], remarks: null, loading: null, timestamp: null,