diff options
author | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-06-04 13:49:30 +0200 |
---|---|---|
committer | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-06-04 13:49:30 +0200 |
commit | da7fea4155053a98d425ac2e38a5051951f4e53a (patch) | |
tree | 81a74421d13d905c12126fd1e02d64e20f4c792e | |
parent | fb6adae985bc8d205008c53e65955042d04b0b24 (diff) |
fix: fix public icons path for svg embed
-rw-r--r-- | src/frontend/tubo/components/layout.cljs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/tubo/components/layout.cljs b/src/frontend/tubo/components/layout.cljs index b36f38c..c9fdd70 100644 --- a/src/frontend/tubo/components/layout.cljs +++ b/src/frontend/tubo/components/layout.cljs @@ -25,7 +25,7 @@ (defn logo [& {:keys [height width]}] (r/create-element - (svgreq/embed "resources/public/icons" "tubo" nil) + (svgreq/embed "./resources/public/icons" "tubo" nil) (js-obj "height" width "width" height))) (defn loading-icon |