summaryrefslogtreecommitdiff
path: root/gnosis.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-12-10 22:59:30 +0200
committerThanos Apollo <[email protected]>2024-12-10 23:06:49 +0200
commit361272c070d04f77d875420e05d186e382a65048 (patch)
treedd2c67d3483a9c5a5a9c54679ef585f007a9f114 /gnosis.el
parent69826fc8f7de1e69ebf5653110b9c164e6963cd8 (diff)
[fix] Adjust dashboard funcs for new values.
* Ids are not as strings in new dashboard implementation.
Diffstat (limited to 'gnosis.el')
-rw-r--r--gnosis.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnosis.el b/gnosis.el
index f0168ed..c6e1287 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -2689,7 +2689,7 @@ Skips days where no note was reviewed."
(interactive)
(if gnosis-dashboard--selected-ids
(gnosis-dashboard-marked-suspend)
- (gnosis-suspend-note (string-to-number (tabulated-list-get-id)))
+ (gnosis-suspend-note (tabulated-list-get-id))
(gnosis-dashboard-output-notes gnosis-dashboard-note-ids)
(revert-buffer t t t)))
@@ -2698,7 +2698,7 @@ Skips days where no note was reviewed."
(interactive)
(if gnosis-dashboard--selected-ids
(gnosis-dashboard-marked-delete)
- (gnosis-delete-note (string-to-number (tabulated-list-get-id)))
+ (gnosis-delete-note (tabulated-list-get-id))
(gnosis-dashboard-output-notes gnosis-dashboard-note-ids)
(revert-buffer t t t)))
@@ -3004,7 +3004,7 @@ DASHBOARD-TYPE: either Notes or Decks to display the respective dashboard."
(interactive)
(when (y-or-n-p "Delete selected notes?")
(cl-loop for note in gnosis-dashboard--selected-ids
- do (gnosis-delete-note (string-to-number note) t))
+ do (gnosis-delete-note note t))
(gnosis-dashboard-return)))
(defun gnosis-dashboard-marked-suspend ()
@@ -3012,7 +3012,7 @@ DASHBOARD-TYPE: either Notes or Decks to display the respective dashboard."
(interactive)
(when (y-or-n-p "Toggle SUSPEND on selected notes?")
(cl-loop for note in gnosis-dashboard--selected-ids
- do (gnosis-suspend-note (string-to-number note) t))
+ do (gnosis-suspend-note note t))
(gnosis-dashboard-return)))
(transient-define-suffix gnosis-dashboard-suffix-query (query)