Skip to content

Commit

Permalink
Merge pull request #6200 from getkirby/fix/6199-structure-field-sort
Browse files Browse the repository at this point in the history
Fix structure field sort method
  • Loading branch information
bastianallgeier authored Jan 24, 2024
2 parents 173364b + 8b4b22c commit 4dd51ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/src/components/Forms/Field/StructureField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ export default {
return items;
}
return this.$helper.array.sortBy(this.items, this.sortBy);
return this.$helper.array.sortBy(items, this.sortBy);
},
/**
* Converts field value to internal
Expand Down

0 comments on commit 4dd51ce

Please sign in to comment.