diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-19 15:17:41 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-19 15:17:41 +0900 |
| commit | bdc72e5817782316bb2c56ab362b4aa237236bef (patch) | |
| tree | 209e6fca274123ea93dc38bce5e9a96bef15a974 /packages/frontend/src/components/MkPageWindow.vue | |
| parent | 🎨 (diff) | |
| download | misskey-bdc72e5817782316bb2c56ab362b4aa237236bef.tar.gz misskey-bdc72e5817782316bb2c56ab362b4aa237236bef.tar.bz2 misskey-bdc72e5817782316bb2c56ab362b4aa237236bef.zip | |
clean up
Diffstat (limited to 'packages/frontend/src/components/MkPageWindow.vue')
| -rw-r--r-- | packages/frontend/src/components/MkPageWindow.vue | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/packages/frontend/src/components/MkPageWindow.vue b/packages/frontend/src/components/MkPageWindow.vue index 8a1a9c58d2..a6049b4d91 100644 --- a/packages/frontend/src/components/MkPageWindow.vue +++ b/packages/frontend/src/components/MkPageWindow.vue @@ -60,9 +60,8 @@ const windowRouter = routerFactory(props.initialPath); const pageMetadata = ref<null | PageMetadata>(null); const windowEl = shallowRef<InstanceType<typeof MkWindow>>(); -const history = ref<{ path: string; key: string; }[]>([{ +const history = ref<{ path: string; }[]>([{ path: windowRouter.getCurrentPath(), - key: windowRouter.getCurrentKey(), }]); const buttonsLeft = computed(() => { const buttons: Record<string, unknown>[] = []; @@ -100,12 +99,12 @@ function getSearchMarker(path: string) { const searchMarkerId = ref<string | null>(getSearchMarker(props.initialPath)); windowRouter.addListener('push', ctx => { - history.value.push({ path: ctx.path, key: ctx.key }); + history.value.push({ path: ctx.path }); }); windowRouter.addListener('replace', ctx => { history.value.pop(); - history.value.push({ path: ctx.path, key: ctx.key }); + history.value.push({ path: ctx.path }); }); windowRouter.addListener('change', ctx => { @@ -155,7 +154,7 @@ const contextmenu = computed(() => ([{ function back() { history.value.pop(); - windowRouter.replace(history.value.at(-1)!.path, history.value.at(-1)!.key); + windowRouter.replace(history.value.at(-1)!.path); } function reload() { |