diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2018-09-08 21:44:28 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2018-09-08 21:44:28 +0900 |
| commit | 5a13c38a6d27535da21894ca8642d722873c017f (patch) | |
| tree | 026a66751916108837c85b596e1de606ede30557 /src/client/app/config.ts | |
| parent | fix wrong reaction img (#2666) (diff) | |
| download | misskey-5a13c38a6d27535da21894ca8642d722873c017f.tar.gz misskey-5a13c38a6d27535da21894ca8642d722873c017f.tar.bz2 misskey-5a13c38a6d27535da21894ca8642d722873c017f.zip | |
インスタンス名がブラウザタイトルに反映されないのを修正 (#2668)
* titleが反映されないのを修正
* deckでtitleが反映されるように修正
Diffstat (limited to 'src/client/app/config.ts')
| -rw-r--r-- | src/client/app/config.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/app/config.ts b/src/client/app/config.ts index a326c521db..2e464c50f3 100644 --- a/src/client/app/config.ts +++ b/src/client/app/config.ts @@ -5,6 +5,7 @@ declare const _COPYRIGHT_: string; declare const _VERSION_: string; declare const _CODENAME_: string; declare const _ENV_: string; +declare const _NAME_: string; const address = new URL(location.href); @@ -20,3 +21,4 @@ export const copyright = _COPYRIGHT_; export const version = _VERSION_; export const codename = _CODENAME_; export const env = _ENV_; +export const name = _NAME_; |