Conversation
MkMfm の hashtag token は pointer 表示なのにクリックハンドラが空で 何も起こらなかった (#618)。検索カラムは cross-account で開けるため 親への emit ではなく MkMfm 内部で navigateToHashtag を呼び、 全使用箇所 (本文/bio/チャット等) で一律に効くようにした。 - deck store に openSearchWith を追加 (openChatWith と同型、 検索カラムが開いている場合は query 差し替えで閉じない) - DeckSearchColumn が column.query の外部変更を watch して再検索 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
外部からの query 差し替えは手入力フローと違いプレビュー検索 (searchLocal) を経ないため、前クエリの notes / hasLocalResults が 残ったままだった。その結果ローカル検索がスキップされ、サーバー 結果も mergeNotes で旧結果に混ざるだけで置き換わらなかった。 watch 側で notes / hasLocalResults をリセットしてから performSearch を呼ぶ。ガードも searchQuery (未確定入力) ではなく confirmedQuery との比較に変更。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
notes/search はサーバーの検索バックエンド (Meilisearch 等) が トークナイズで `#` 等の記号を落とすため、`#tag` 検索にタグなしの 平文一致が混入していた。ローカル DB 検索は trigram FTS で元から リテラル一致のため、サーバー結果側だけ意味論がずれていた。 空白を含まない単一語クエリに限り、本文/CW へのリテラル含有 (case-insensitive) でサーバー結果をフィルタする。複数語 (空白 区切り AND) はサーバーの挙動を尊重してそのまま通す。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Changelog
Closes #618
🤖 Generated with Claude Code