Skip to content

Commit

Permalink
Merge branch 'hotfix/1.32.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
lrosenstrom committed Sep 5, 2023
2 parents ccb6451 + 76ac42e commit f713e9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vue-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-client",
"version": "1.32.1",
"version": "1.32.2",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
2 changes: 1 addition & 1 deletion vue-client/src/components/inspector/item-bylang.vue
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export default {
}
const newData = this.dataForm(viewObjects);
const oldData = cloneDeep(get(this.inspector.data, this.path));
if (newData && !isEqual(oldData, newData)) {
if (!isEqual(oldData, newData)) {
this.$store.dispatch('updateInspectorData', {
changeList: [
{
Expand Down

0 comments on commit f713e9b

Please sign in to comment.