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/select-file.ts | |
| parent | refactor(build): gulpを経由しないでTypeScriptのビルドを行うよ... (diff) | |
| download | sharkey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.tar.gz sharkey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.tar.bz2 sharkey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.zip | |
refactor: Tweak path alias of client
Diffstat (limited to 'src/client/scripts/select-file.ts')
| -rw-r--r-- | src/client/scripts/select-file.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/scripts/select-file.ts b/src/client/scripts/select-file.ts index c083e1ef88..03ac863aa0 100644 --- a/src/client/scripts/select-file.ts +++ b/src/client/scripts/select-file.ts @@ -1,6 +1,6 @@ import { faUpload, faCloud, faLink } from '@fortawesome/free-solid-svg-icons'; -import * as os from '@/os'; -import { i18n } from '@/i18n'; +import * as os from '@client/os'; +import { i18n } from '@client/i18n'; export function selectFile(src: any, label: string | null, multiple = false) { return new Promise((res, rej) => { |