Skip to content

Commit

Permalink
style: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
alastair-simon committed Jan 8, 2025
1 parent 71b8069 commit 329f661
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -459,5 +459,3 @@ export const VisualTestColorpickerWithHelpText: MtColorpickerStory = {
expect(openedTooltip.innerText).toEqual("Text for helping you");
},
};


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 329f661

Please sign in to comment.