Commit 2ac6846 1 parent 3b7b951 commit 2ac6846 Copy full SHA for 2ac6846
File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1
1
# QOwnNotes Web Companion Changelog
2
2
3
+ ## 2024.2.3
4
+ - the missing delete code was added (for [ #57 ] ( https://github.com/qownnotes/web-companion/issues/57 ) )
5
+ - the minimum height of the popup was raised to 300px to allow
6
+ dialogs to be shown fully if there is little content
7
+
3
8
## 2024.2.2
4
9
- bookmarks can now be deleted in the bookmarks list (for [ #57 ] ( https://github.com/qownnotes/web-companion/issues/57 ) )
5
10
- added more Arabic translation (thank you noureddin)
Original file line number Diff line number Diff line change @@ -329,7 +329,13 @@ export default defineComponent({
329
329
html: true ,
330
330
cancel: true ,
331
331
persistent: true
332
- })
332
+ }).onOk (() => {
333
+ const data = {type: " deleteBookmark" , data: {markdown: markdown}};
334
+ webSocket .value .send (data, function () {
335
+ console .log (" Deleting bookmark:" + data);
336
+ loadBookmarks ();
337
+ });
338
+ });
333
339
}
334
340
335
341
const searchInput = ref (null );
@@ -530,6 +536,7 @@ export default defineComponent({
530
536
531
537
.bookmarks-page {
532
538
min-width : 550px ;
539
+ min-height : 300px ;
533
540
534
541
> div {
535
542
width : 100% ;
You can’t perform that action at this time.
0 commit comments