use full paths for image

This commit is contained in:
Mark Eaton
2026-02-23 10:20:50 -05:00
parent 898e623b2b
commit 9afd7790a1
+3 -1
View File
@@ -207,7 +207,9 @@ const onesearchComponent = {
}, },
computed: { computed: {
logoSrc() { logoSrc() {
return this.isDark ? "onesearch_logo3.png" : "onesearch_logo2.png"; return this.isDark
? "https://d2jv02qf7xgjwx.cloudfront.net/accounts/16298/images/onesearch_logo3.png"
: "https://d2jv02qf7xgjwx.cloudfront.net/accounts/16298/images/onesearch_logo2.png";
}, },
}, },
data() { data() {