Merge branch 'release_23.0' into release_23.1

This commit is contained in:
John Davis
2024-02-18 15:22:08 -05:00
@@ -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];
});
}