fiixed: tag case on ctrl+click

This commit is contained in:
quenousimporte 2023-01-23 12:59:46 +01:00
parent 33e8c36357
commit 65d2007499
1 changed files with 3 additions and 2 deletions

View File

@ -434,7 +434,7 @@ function clickeditor()
else if (tag)
{
tagslist();
searchinlist(tags[tag])
searchinlist(tags[tag.toLowerCase()])
.then(loadnote);
}
else
@ -616,6 +616,7 @@ function save()
}
else
{
currentnote.pos = md.selectionStart;
currentnote.content = content;
window.localStorage.setItem(currentvault, JSON.stringify(localdata));
@ -1732,7 +1733,7 @@ function bindfile(note)
resetfolds();
resize();
setpos(0);
setpos(note.pos || 0);
// to improve...
if (!issplit())