Skip to content

Commit

Permalink
Fix transient-format-value returning nil (Fix #4)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed-shariff committed Sep 30, 2023
1 parent 3a40541 commit 0123565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion org-roam-ql.el
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ If there are entries that do not have an ID, it will signal an error"

(cl-defmethod transient-format-value ((obj org-roam-ql--variable))
"Format of the OBJ's VALUE."
(oref obj value))
(or (oref obj value) ""))

(cl-defmethod transient-format-value ((obj org-roam-ql--variable--choices))
"Format of the OBJ's VALUE for choices."
Expand Down

0 comments on commit 0123565

Please sign in to comment.