diff options
author | Colin Okay <colin@cicadas.surf> | 2022-11-02 10:32:07 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-11-02 10:32:07 -0500 |
commit | 148057c4e13c3d4608db8e45193f8d7dd44836e2 (patch) | |
tree | 7014fc04199d9fe563e8cc4150e1c9d0fc0905cb /playlist.lisp | |
parent | 29da7990c483947d09af90a8dede08c52ba0158a (diff) |
Tweak: display of playlist creator
Diffstat (limited to 'playlist.lisp')
-rw-r--r-- | playlist.lisp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/playlist.lisp b/playlist.lisp index 59e4824..c5d778f 100644 --- a/playlist.lisp +++ b/playlist.lisp @@ -430,8 +430,9 @@ (form-element (:text :bind input)) (:span (:content " -- ")) (:span (:bind dur-elem :content (secs-to-hms (playlist-duration pl))))) - (a (:link (url-to-user (playlist-user pl)) - :content (format nil "by ~a" (user-name (playlist-user pl))))) + (span (:content "by ") + (a (:link (url-to-user (playlist-user pl)) + :content (format nil "~a" (user-name (playlist-user pl)))))) (p (:bind collaborators-elem)) (track-listing (pl)))) (div (:class "row") |