adjusted save note argument signature

This commit is contained in:
Ryan Peters
2025-01-09 11:41:18 -05:00
parent 9a5a082f6d
commit 538ddeeb4f
4 changed files with 5 additions and 5 deletions

View File

@ -29,7 +29,7 @@ function saveContent($textarea) {
var content = $textarea.val();
connection.invoke('SaveNote', content, noteName).then(function () {
connection.invoke('SaveNote', noteName, content).then(function () {
showToast('#saved-indicator');
}).catch(function (err) {
console.error(err.toString());