diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-23 17:30:14 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-23 17:30:14 +0900 |
| commit | d6e23b803b10a471bb5b1054b357c70a16e8f6da (patch) | |
| tree | 111c870777d931cc56b5e34553e1b286bb2ba78c /src/client/scripts/search.ts | |
| parent | refactor(build): gulpを経由しないでTypeScriptのビルドを行うよ... (diff) | |
| download | misskey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.tar.gz misskey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.tar.bz2 misskey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.zip | |
refactor: Tweak path alias of client
Diffstat (limited to 'src/client/scripts/search.ts')
| -rw-r--r-- | src/client/scripts/search.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/scripts/search.ts b/src/client/scripts/search.ts index 3e442cb94d..829065534c 100644 --- a/src/client/scripts/search.ts +++ b/src/client/scripts/search.ts @@ -1,7 +1,7 @@ import { faHistory } from '@fortawesome/free-solid-svg-icons'; -import * as os from '@/os'; -import { i18n } from '@/i18n'; -import { router } from '@/router'; +import * as os from '@client/os'; +import { i18n } from '@client/i18n'; +import { router } from '@client/router'; export async function search() { const { canceled, result: query } = await os.dialog({ |