Skip to content

Commit

Permalink
🐛 Fixes item size not honored (#576)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Mar 26, 2022
1 parent 1c85d45 commit cd50ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LinkItems/Section.vue
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default {
return this.$store.state.editMode;
},
itemSize() {
return this.$store.getters.iconSize;
return this.displayData.itemSize || this.$store.getters.iconSize;
},
sortOrder() {
return this.displayData.sortBy || defaultSortOrder;
Expand Down

0 comments on commit cd50ceb

Please sign in to comment.