Skip to content

Commit

Permalink
clean up code
Browse files Browse the repository at this point in the history
  • Loading branch information
Haberkamp committed Dec 18, 2024
1 parent 232944e commit 9998cb4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 42 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"@shopware-ag/meteor-component-library": "workspace:*",
"regenerator-runtime": "^0.14.1",
"vue": "3.4.21",
"vue-i18n": "9.9.1",
"vue-router": "4.4.5"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export default defineComponent({
return {
id: column.property,
label: column.label,
parentGroup: (column.visible ?? true) ? "visible" : "hidden",
parentGroup: column.visible ?? true ? "visible" : "hidden",
position: column.position,
isVisible: column.visible ?? true,
isHidable: isPrimaryColumn(column) ? false : true,
Expand Down
40 changes: 0 additions & 40 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9998cb4

Please sign in to comment.