Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 7eb9487

Browse files
committed
Merge branch '283-no-way-to-unhide-hidden-stock-metadata-columns'
2 parents f791a3f + 2634c49 commit 7eb9487

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/modals/newColumn/handlers/HideColumnsHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class HideColumnsHandler extends AbstractHandlerClass<AddColumnModalHandl
1515
******************/
1616
// List of columns to show/hide
1717
columns
18-
.filter(c => !c.isMetadata)
18+
.filter(c => !c.skipPersist)
1919
.forEach((column) => {
2020
const toggleHandler = (shown: boolean): void => {
2121
actions.alterIsHidden(column, !shown);

0 commit comments

Comments
 (0)