Fix wrong freezing of Vuex data.

It's the sequence items themselves that benefit from freezing,
not the sequence array itself.
This commit is contained in:
D. Berge
2025-08-06 11:01:57 +02:00
parent 12369d5419
commit 931219850e

View File

@@ -1,5 +1,5 @@
const state = () => ({
sequences: Object.freeze([]),
sequences: [],
remarks: null,
loading: null,
timestamp: null,