Skip to content

Commit

Permalink
[ReviewEntries] Exempt edit/delete cols from Hide All (#3079)
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec authored May 2, 2024
1 parent dc301f3 commit de31bb6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/goals/ReviewEntries/ReviewEntriesTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ export default function ReviewEntriesTable(props: {
Cell: ({ row }: CellProps) => (
<Cell.Edit replace={replaceWord} word={row.original} />
),
enableHiding: false,
Header: "",
header: t("reviewEntries.columns.edit"),
size: IconColumnSize,
Expand Down Expand Up @@ -305,6 +306,7 @@ export default function ReviewEntriesTable(props: {
Cell: ({ row }: CellProps) => (
<Cell.Delete delete={deleteWord} word={row.original} />
),
enableHiding: false,
Header: "",
header: t("reviewEntries.columns.delete"),
size: IconColumnSize,
Expand Down

0 comments on commit de31bb6

Please sign in to comment.