-
Notifications
You must be signed in to change notification settings - Fork 132
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
fix(platform): table filter enhancement #12864
base: main
Are you sure you want to change the base?
Conversation
closes [#11783](#11783) - Add support for formatting array values in table component - Fix format field name ## Before <img width="666" alt="Screenshot 2024-11-25 at 17 49 05" src="https://github.com/user-attachments/assets/dd9fe3fd-2e4f-4c03-b4fd-462d0a9b8429"> ## After <img width="854" alt="Screenshot 2024-11-25 at 17 49 53" src="https://github.com/user-attachments/assets/c76fcdd5-44f6-4b59-b3ac-7576f43f1989">
✅ Deploy Preview for fundamental-ngx ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Visit the preview URL for this PR (updated for commit fc4012d): https://fundamental-ngx-gh--pr12864-11783-feat-table-fil-fmzi4dev.web.app (expires Mon, 23 Dec 2024 14:51:03 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 Sign: 41b993ee8e451bd7c6770b342ce142dc886eacff |
@khotcholava Let @droshev once you update it. |
closes [#11783](#11783) - Fixed formatting ## Before <img width="666" alt="Screenshot 2024-11-25 at 17 49 05" src="https://github.com/user-attachments/assets/dd9fe3fd-2e4f-4c03-b4fd-462d0a9b8429"> ## After <img width="854" alt="Screenshot 2024-11-25 at 17 49 53" src="https://github.com/user-attachments/assets/c76fcdd5-44f6-4b59-b3ac-7576f43f1989">
return appliedFilters | ||
.map((filter, index) => { | ||
const separator = index < appliedFilters.length - 1 ? ', ' : ''; | ||
return `${filter.columnName} (${filter.params})${separator}`; |
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.
It looks like this is working well to me but I am curious if this is the behavior we would be looking for with RTL languages. Not sure how that works
closes #11783
Before
After