Merge pull request #17 from n8k99/claude/fix-nested-folder-display-015Ytt8mSX9sfytMQC85P4gA

fix(obsidian): remove emojis from button labels
This commit is contained in:
Nathan Eckenrode 2025-11-14 01:11:10 -05:00 committed by GitHub
commit f164c11e2b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,7 +34,7 @@ function showSearchMethodDialog(elementId, elementType, coordinates) {
title: "Select Note", title: "Select Note",
width: "450px", width: "450px",
buttons: { buttons: {
"🔍 Search": function () { "Search": function () {
$(this).dialog("close"); $(this).dialog("close");
// Show loading and do automatic search // Show loading and do automatic search
showLoadingDialog(); showLoadingDialog();
@ -48,7 +48,7 @@ function showSearchMethodDialog(elementId, elementType, coordinates) {
closeDialogs("#obsidianNoteLoading"); closeDialogs("#obsidianNoteLoading");
}); });
}, },
"📁 Browse": async function () { "Browse": async function () {
$(this).dialog("close"); $(this).dialog("close");
try { try {
const noteData = await promptCreateNewNote(elementId, elementType, coordinates); const noteData = await promptCreateNewNote(elementId, elementType, coordinates);