diff options
-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") |