From 22912bdd7e86f9888bab48399e45a17128af457a Mon Sep 17 00:00:00 2001 From: Gabriel Horner Date: Wed, 28 Jan 2026 14:49:19 -0500 Subject: [PATCH] fix: published :url :many property values doesn't display multiple urls correctly. Fixes https://test.logseq.com/#/page/697a675f-33ba-4cee-a4c1-adca385c714a --- deps/publish/src/logseq/publish/render.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/publish/src/logseq/publish/render.cljs b/deps/publish/src/logseq/publish/render.cljs index 2793d97237..8bc2c179ee 100644 --- a/deps/publish/src/logseq/publish/render.cljs +++ b/deps/publish/src/logseq/publish/render.cljs @@ -268,7 +268,7 @@ (and uuid graph-uuid (publish-model/page-entity? entity)) [[:a.page-ref {:href (str "/page/" graph-uuid "/" uuid)} title]] (common-util/url? title) - [:a {:href title} title] + [[:a {:href title} title]] :else [title])))