Skip to content

Commit

Permalink
Merge branch 'release_23.0' into release_23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed Feb 18, 2024
2 parents 91d9d49 + d483675 commit 3308279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/store/historyStore/datasetStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -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];
});
}
Expand Down

0 comments on commit 3308279

Please sign in to comment.