Unverified Commit d4836758 authored by Marius van den Beek's avatar Marius van den Beek Committed by GitHub
Browse files

Merge pull request #17448 from ahmedhamidawan/23.0_datasetStore_saveDatasets_fix

[23.0] Fix `datasetStore.saveDatasets` bug
parents bed5c5e2 948c0134
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ const mutations = {
                const id = item.id;
                if (state.items[id]) {
                    const localItem = state.items[id];
                    Object.keys(localItem).forEach((key) => {
                    Object.keys(item).forEach((key) => {
                        localItem[key] = item[key];
                    });
                }