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",
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);