diff options
| author | Acid Chicken (硫酸鶏) <root@acid-chicken.com> | 2018-12-11 20:19:13 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2018-12-11 20:19:13 +0900 |
| commit | 08142ead678c598b8500f563cc117bfa7faf5944 (patch) | |
| tree | 38e36da1904b52385d5649db60958ef57a0f12d8 /src/client/app/admin/script.ts | |
| parent | Show user fields (#3590) (diff) | |
| download | sharkey-08142ead678c598b8500f563cc117bfa7faf5944.tar.gz sharkey-08142ead678c598b8500f563cc117bfa7faf5944.tar.bz2 sharkey-08142ead678c598b8500f563cc117bfa7faf5944.zip | |
Resolve #3581 (#3589)
* Update ja-JP.yml
* Create 404.vue
* Update script.ts
* Update script.ts
* Update script.ts
* Update script.ts
* Update script.ts
* Update script.ts
* Update 404.vue
* Update meta.ts
* Update instance.vue
* Update update-meta.ts
Diffstat (limited to 'src/client/app/admin/script.ts')
| -rw-r--r-- | src/client/app/admin/script.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/app/admin/script.ts b/src/client/app/admin/script.ts index 4002734d3d..1b9b91c865 100644 --- a/src/client/app/admin/script.ts +++ b/src/client/app/admin/script.ts @@ -9,6 +9,7 @@ import './style.styl'; import init from '../init'; import Index from './views/index.vue'; +import NotFound from '../common/views/pages/404.vue'; init(launch => { document.title = 'Admin'; @@ -19,6 +20,7 @@ init(launch => { base: '/admin/', routes: [ { path: '/', component: Index }, + { path: '*', component: NotFound } ] }); |