diff options
| author | ha-dai <contact@haradai.net> | 2017-03-25 21:14:38 +0900 |
|---|---|---|
| committer | ha-dai <contact@haradai.net> | 2017-03-25 21:14:38 +0900 |
| commit | 4b07d3747c6501422e1e2a0304770a1a08340319 (patch) | |
| tree | 34a4db8cad505f9f9dc5f00b33194b96a95b220c /src/web/app/common/scripts | |
| parent | Update view.pug (diff) | |
| download | sharkey-4b07d3747c6501422e1e2a0304770a1a08340319.tar.gz sharkey-4b07d3747c6501422e1e2a0304770a1a08340319.tar.bz2 sharkey-4b07d3747c6501422e1e2a0304770a1a08340319.zip | |
Fix typo.
Diffstat (limited to 'src/web/app/common/scripts')
| -rw-r--r-- | src/web/app/common/scripts/check-for-update.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/check-for-update.js b/src/web/app/common/scripts/check-for-update.js index 9cbe482ed5..7f4c1cdee8 100644 --- a/src/web/app/common/scripts/check-for-update.js +++ b/src/web/app/common/scripts/check-for-update.js @@ -7,7 +7,7 @@ export default function() { res.json().then(meta => { if (meta.version != VERSION) { localStorage.setItem('should-refresh', 'true'); - alert(`Misskeyの新しいバージョンがあります(${meta.version}。現在を${VERSION}利用中)。\nページを再度読み込みすると更新が適用されます。`); + alert(`Misskeyの新しいバージョンがあります(${meta.version}。現在${VERSION}を利用中)。\nページを再度読み込みすると更新が適用されます。`); } }); }); |