Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ERM-3390 Show columns: Name column should not be in the list of unsel… #1366

Merged
merged 10 commits into from
Nov 11, 2024
1 change: 1 addition & 0 deletions src/components/AgreementSections/Lines/Lines.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ const Lines = ({
</Button>
<ColumnManagerMenu
columnMapping={LINE_LISTING_COLUMN_MAPPING}
excludeColumns={['name']}
prefix="line-listing"
toggleColumn={toggleColumn}
visibleColumns={visibleColumns}
Expand Down
1 change: 1 addition & 0 deletions src/components/views/AgreementLines/AgreementLines.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ const AgreementLines = ({
return (
<ColumnManagerMenu
columnMapping={AGREEMENT_LINES_COLUMN_MAPPING}
excludeColumns={['name']}
prefix="agreement-lines"
toggleColumn={toggleColumn}
visibleColumns={visibleColumns}
Expand Down
1 change: 1 addition & 0 deletions src/components/views/Agreements/Agreements.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ const Agreements = ({
</IfPermission>
<ColumnManagerMenu
columnMapping={AGREEMENTS_COLUMN_MAPPING}
excludeColumns={['name']}
prefix="agreements-list"
toggleColumn={toggleColumn}
visibleColumns={visibleColumns}
Expand Down
Loading