fix(filter): resolve multi_select filter validation error in advanced filtering #32
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes: #23
This pull request primarily refactors the
SettingsPanelcomponent infrontend/src/components/settings-panel.tsxto use consistent double-quote style and improve code readability, while also enhancing the robustness and clarity of the chart generation and filter handling logic. There are no functional changes to business logic, but the code is now more maintainable and easier to follow. Additionally, theCHANGELOG.mdis updated to document a recent bug fix for multi-select filtering.Changelog update:
Code style and readability improvements:
frontend/src/components/settings-panel.tsxto consistently use double quotes, add semicolons, and improve indentation and formatting throughout the file. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14]Chart generation and filter handling improvements:
These changes should make the codebase easier to maintain and help prevent similar issues with filter handling in the future.