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.
🐛 Fix: Add UI to filter memos by Links, Code, and To-do
Problem
Fixes #5289
Users were unable to filter memos by Links, Code blocks, or To-do lists. While the filtering logic existed in the backend and filter display components worked correctly, there was no UI element to actually select these filters.
What Changed
Added a new
MemoFilterMenucomponent that provides a dropdown interface to toggle property-based filters:property.hasLink)property.hasTaskList)property.hasCode)Technical Details
MemoFilterMenu.tsx- Filter selection dropdown with toggle functionalitySearchBar.tsx- Added filter menu button next to existing settings buttonmemoFilterStorefor state managementMemoFilters.tsxcomponentHow It Works
useMemoFiltershookTesting
Screenshots
New Implementation showing the new MemoFilterMenu component

Before: No way to select property filters
After: Filter menu with Links, To-do, and Code options