Skip to content

Commit

Permalink
Apply code formatting and fixable ESLint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Haberkamp authored and github-actions[bot] committed Jan 7, 2025
1 parent 1823aad commit f7dc85f
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit f7dc85f

Please sign in to comment.