You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
memos/store
Steven e0b1153269 fix(web): resolve MobX observable reactivity issue in filter computation
Fixes filtering functionality that was broken due to improper use of
useMemo with MobX observables. The issue occurred because useMemo's
dependency array uses reference equality, but MobX observable arrays
are mutated in place (reference doesn't change when items are added/removed).

Changes:
- Remove useMemo from filter computation in Home, UserProfile, and Archived pages
- Calculate filters directly in render since components are already MobX observers
- Fix typo: memoFitler -> memoFilter in Archived.tsx

This ensures filters are recalculated whenever memoFilterStore.filters changes,
making tag clicks and other filter interactions work correctly.

Fixes #5189

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
8 months ago
..
cache chore: fix linter 10 months ago
db fix(web): resolve MobX observable reactivity issue in filter computation 8 months ago
migration chore: update migrator comments 11 months ago
seed/sqlite feat: add id as final tie-breaker in ListMemos 8 months ago
test refactor: remove unused constants 8 months ago
activity.go chore: remove version update activity 1 year ago
attachment.go refactor: memo filter 8 months ago
cache.go chore: update store cache 2 years ago
common.go chore: update workspace setting store 2 years ago
driver.go refactor: update migration history methods 8 months ago
idp.go refactor: store cache 1 year ago
inbox.go chore: add pagination to list inboxes 2 years ago
memo.go feat: enhance memo sorting functionality to support multiple fields 8 months ago
memo_relation.go fix: list memo relations 1 year ago
migration_history.go refactor: update migration history methods 8 months ago
migrator.go feat: enhance memo sorting functionality to support multiple fields 8 months ago
reaction.go refactor: memo filter 8 months ago
store.go refactor: clean packages 1 year ago
user.go refactor: remove unused constants 8 months ago
user_setting.go refactor: webhook service 12 months ago
workspace_setting.go refactor: store cache 1 year ago