-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: Add GridColumn.showIn for csv-only columns. #1109
Conversation
@@ -249,23 +249,21 @@ export class GridTableApiImpl<R extends Kinded> implements GridTableApi<R> { | |||
const csvPrefixRows = this.tableState.csvPrefixRows?.map((row) => row.map(escapeCsvValue).join(",")) ?? []; | |||
// Convert the array of rows into CSV format | |||
const dataRows = this.tableState.visibleRows.map((rs) => { | |||
const values = this.tableState.visibleColumns | |||
.filter((c) => !c.isAction) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is mostly whitespace changes, the only real change is this !c.isAction
moved into the new visibleCsvColumns
method.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🍣
499b96e
to
f4eb3e0
Compare
## [2.378.0](v2.377.3...v2.378.0) (2025-01-30) ### Features * Add GridColumn.showIn for csv-only columns. ([#1109](#1109)) ([80836e6](80836e6))
🎉 This PR is included in version 2.378.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
No description provided.