Skip to content

Commit

Permalink
Merge branch 'feat/add-options-button-in-table' into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Oct 2, 2024
2 parents 0b9b2df + 1f5320d commit 2d9fc4d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/components/InfiniteTable/columnStateHelper.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
export const STATUS_COLUMN = "$status";
export const CHECKBOX_COLUMN = "$checkbox";
export const FIXED_COLUMNS_TO_IGNORE = [CHECKBOX_COLUMN, STATUS_COLUMN];
export const ALL_COLUMNS_TO_IGNORE = [
...FIXED_COLUMNS_TO_IGNORE,
STATUS_COLUMN,
];
export const FIXED_COLUMNS_TO_IGNORE = [CHECKBOX_COLUMN];
export const ALL_COLUMNS_TO_IGNORE = [...FIXED_COLUMNS_TO_IGNORE];

export const getPersistedColumnState = ({
actualColumnKeys,
Expand Down

0 comments on commit 2d9fc4d

Please sign in to comment.