From 9795e1bdfc85d999761c5970bacd582023a78d6f Mon Sep 17 00:00:00 2001 From: Caleb Burke Date: Fri, 4 Sep 2026 18:11:47 -0700 Subject: [PATCH] :art: Show Traditional Knowledge Vault branding in the website tab. Renames the browser tab to "Traditional Knowledge Vault : Sign In" and removes the Yukon sunburst favicon so no government logo appears in the tab. See https://yg-hpw.atlassian.net/browse/TK-77 --- web/index.html | 3 +-- web/public/favicon.ico | Bin 5430 -> 0 bytes web/src/plugins/router-plugin.ts | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 web/public/favicon.ico diff --git a/web/index.html b/web/index.html index 01ec18bb..6aa2f76d 100644 --- a/web/index.html +++ b/web/index.html @@ -4,8 +4,7 @@ F=AFJH2lh-;0oyeFGoo-gD3S z&V6U@z30v|W{K%C0|N$GFng97Gh~b@6ypAG=#QZrMn@BiSdVxwpUQ=oUB#-u9*mc2 zL07vUiQOk)Yq92kAls;2^)Dh{gYS#pTvy5Sdt9E97esx=OW+B341NSFtR3wGAOw@( z2KYMW50=rs0uF=w;5Jz4_${SB1sY%uh(mY@z65_Ied%N)+yZN3e!rjgIxql^1M8nB z|6zPBkiC{j`Xss+$e)06k@c^ky8|XuC#Qk_bFdnG2;{pTh(~&e!c_Fko+Y(X z=kF$P4CpLB#aY}`>+<{-qAONs`{4TnsMa0eyd5fE3e$RwZVadnWb4ZDqBr~2IWHu3 zxfa!xGdbMX(S0F~^7(+e9;~3Rd7J{O;dU-ls{4_h=d1p&Y84lrbiCxvDyJtLu4lBX zV4NI$L|)PyxSWiuZhr&p91c~y=q|Gh-6JsK+S@kzQJ_1>wvh|3;=9ASl!KZZq<0JJ zlPB@tK3w$!q>bO8eHz$1$bG#-*B5TpV#St^?kB$_ZOfr~kGekDb~(=1cNstHpOw?( zx*!hT$uK_R&)Q`Bn%7SGWFPbc;CF{Zwoid%mdEyQGKWtYzuUq_{@Gj}EuC-PTiA$4 z>u;3Y4wtI_Airynek*RxL-!~1h{$_Mx~m58avF_=;usCoxk$aZQ1Gxy9Yu#+Kxc%-Re3T^;`G zf#PWnTUnnvFLjdAu6A2+UT!~0djz2DKDO?1)yzg(Nu znRh}u=D*I`Erx`19Q^$8pYivDIO*?*VzGB^41K?#)3?b6t6L07K0o8VMBk;BFIi)E z?01aS6MK;Lnp-2R&0@$AzOPva3trcY5wpY5$v`Iq?^g!G7SDq)Jb5GxyJy1r<&Ec0 wC+2$V8)v$|T~l9TdguAuL1-8=(Wv)Kys2;A7+&8UhST8gt1z5zLF^3u3p-y*9{>OV diff --git a/web/src/plugins/router-plugin.ts b/web/src/plugins/router-plugin.ts index c2e75949..5107a155 100644 --- a/web/src/plugins/router-plugin.ts +++ b/web/src/plugins/router-plugin.ts @@ -10,7 +10,7 @@ const router = createRouter({ }) router.beforeEach(async (to) => { - document.title = to.meta.title ? `${APPLICATION_NAME} - ${to.meta.title}` : APPLICATION_NAME + document.title = to.meta.title ? `${APPLICATION_NAME} : ${to.meta.title}` : APPLICATION_NAME if (to.meta.requiresAuth === false) return true