diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-10-10 16:25:06 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-10-10 16:25:06 +0900 |
| commit | 9dd0f8c39beea48aa8741aeae1f116e02c987ffc (patch) | |
| tree | 370d6d9939102d9d2f0be793e98c90beef51449f | |
| parent | Update CHANGELOG.md (diff) | |
| download | sharkey-9dd0f8c39beea48aa8741aeae1f116e02c987ffc.tar.gz sharkey-9dd0f8c39beea48aa8741aeae1f116e02c987ffc.tar.bz2 sharkey-9dd0f8c39beea48aa8741aeae1f116e02c987ffc.zip | |
clean up
| -rw-r--r-- | packages/frontend/src/pages/user-list-timeline.vue | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/packages/frontend/src/pages/user-list-timeline.vue b/packages/frontend/src/pages/user-list-timeline.vue index 83244876fe..0fc7b62d82 100644 --- a/packages/frontend/src/pages/user-list-timeline.vue +++ b/packages/frontend/src/pages/user-list-timeline.vue @@ -61,20 +61,7 @@ function settings() { router.push(`/my/lists/${props.listId}`); } -async function timetravel() { - const { canceled, result: date } = await os.inputDate({ - title: i18n.ts.date, - }); - if (canceled) return; - - tlEl.timetravel(date); -} - const headerActions = $computed(() => list ? [{ - icon: 'ti ti-calendar-time', - text: i18n.ts.jumpToSpecifiedDate, - handler: timetravel, -}, { icon: 'ti ti-settings', text: i18n.ts.settings, handler: settings, |