sync: chunk-embedding-audit — fix Sync to Source button visibility

- Show button when notes exist (not just when chunk exists)
- Synced from private repo

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
“BeeRad”
2026-02-15 13:35:59 +11:00
co-authored by Claude Opus 4.6
parent 2940e142c8
commit 0095641278
+1 -1
View File
@@ -2610,7 +2610,7 @@ export default function FocusPanel({ openTabs, activeTab, onTabSelect, onNodeCli
}}>
{/* Sync to Source button - left side */}
<div>
{nodesData[activeTab]?.chunk && (
{nodesData[activeTab]?.notes && (
<button
onClick={() => setShowSyncConfirm(true)}
disabled={notesSaving || syncing}