-
Notifications
You must be signed in to change notification settings - Fork 250
Persist display columns #406
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
base: main
Are you sure you want to change the base?
Persist display columns #406
Conversation
…te ui when columns are changed
🦋 Changeset detectedLatest commit: 922f2d5 The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
@@ -410,7 +410,7 @@ export const RawLogTable = memo( | |||
size: columnSizeStorage[column] ?? 150, | |||
})) as ColumnDef<any>[]), | |||
{ | |||
accessorKey: 'body', | |||
accessorKey: 'show-pattern', |
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.
@MikeShi42 Changed accessorKey from 'body' to 'show-pattern' as it was conflicting with 'body' custom column
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.
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.
@@ -531,7 +531,8 @@ const api = { | |||
{ | |||
name: string; | |||
query: string; | |||
tags?: string; | |||
tags?: string[]; |
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.
@MikeShi42 Changed tag type from string to string[], not sure if that is accurate. Please correct if wrong
Is there is a chance to finish and merge this? 🥺 |
fixes #152