From be62dfad101d6151fea33b00eb314ca5ed7d8be6 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 14 Nov 2025 06:07:57 +0000 Subject: [PATCH] fix(obsidian): remove emojis from button labels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit jQuery UI dialog buttons don't work properly with emojis in the label text. Removed emojis from button labels while keeping them in the dialog content. Changed: - '🔍 Search' → 'Search' - '📁 Browse' → 'Browse' The emojis are still visible in the dialog content boxes, just not in the actual button labels. --- modules/ui/obsidian-notes-editor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ui/obsidian-notes-editor.js b/modules/ui/obsidian-notes-editor.js index 8af8582f..5b266bb8 100644 --- a/modules/ui/obsidian-notes-editor.js +++ b/modules/ui/obsidian-notes-editor.js @@ -34,7 +34,7 @@ function showSearchMethodDialog(elementId, elementType, coordinates) { title: "Select Note", width: "450px", buttons: { - "🔍 Search": function () { + "Search": function () { $(this).dialog("close"); // Show loading and do automatic search showLoadingDialog(); @@ -48,7 +48,7 @@ function showSearchMethodDialog(elementId, elementType, coordinates) { closeDialogs("#obsidianNoteLoading"); }); }, - "📁 Browse": async function () { + "Browse": async function () { $(this).dialog("close"); try { const noteData = await promptCreateNewNote(elementId, elementType, coordinates);