fix(frontend): クライアント起動時にURLに #pswp がある場合は取り除くように (#15339)

* fix(frontend): クライアント起動時にURLに #pswp がある場合は取り除くように

* Update Changelog
This commit is contained in:
かっこかり
2025-01-25 21:01:11 +09:00
committed by GitHub
parent 35104d87d5
commit 8f37fb6713
2 changed files with 6 additions and 0 deletions

View File

@@ -98,6 +98,11 @@ export async function common(createVue: () => App<Element>) {
// タッチデバイスでCSSの:hoverを機能させる
document.addEventListener('touchend', () => {}, { passive: true });
// URLに#pswpを含む場合は取り除く
if (location.hash === '#pswp') {
history.replaceState(null, '', location.href.replace('#pswp', ''));
}
// 一斉リロード
reloadChannel.addEventListener('message', path => {
if (path !== null) location.href = path;