We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2a6d14 commit cc0f7cfCopy full SHA for cc0f7cf
2 files changed
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+# [1.3.0] - 2024-10-15
4
+
5
+* Include URL from entry while moving to notes
6
7
# [1.2.0] - 2023-10-19
8
9
* Retry sending failed notifications with the next trigger
src/main/resources/assets/script/week-edit.ts
@@ -93,6 +93,11 @@ class Editor {
93
return;
94
}
95
96
+ let url = inputElement.dataset.url.trim();
97
+ if (url !== "") {
98
+ text = `${text}: ${url}`;
99
+ }
100
101
let textareaElement = document.querySelector("#notes-sidebar-text") as HTMLTextAreaElement;
102
textareaElement.value = `${textareaElement.value.trim()}\n${text}\n`;
103
0 commit comments