Skip to content

Commit

Permalink
Fix structure field sortBy issue #5448
Browse files Browse the repository at this point in the history
  • Loading branch information
afbora committed Aug 3, 2023
1 parent f0d0448 commit 270f7ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion panel/src/components/Forms/Field/StructureField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,9 @@ export default {
},
watch: {
value(value) {
this.items = this.toItems(value);
if (value !== this.items) {
this.items = this.toItems(value);
}
}
},
methods: {
Expand Down

0 comments on commit 270f7ba

Please sign in to comment.