diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-16 15:39:35 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-16 15:39:35 +0900 |
| commit | 77bac02fc032554f144f4bf3dd9ad0cd67c26672 (patch) | |
| tree | e4a6b188c8f4d2d9756f1ecd5ccd3ecbf718d39a | |
| parent | :v: (diff) | |
| download | sharkey-77bac02fc032554f144f4bf3dd9ad0cd67c26672.tar.gz sharkey-77bac02fc032554f144f4bf3dd9ad0cd67c26672.tar.bz2 sharkey-77bac02fc032554f144f4bf3dd9ad0cd67c26672.zip | |
:v:
| -rw-r--r-- | src/client/app/common/views/components/connect-failed.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/app/common/views/components/connect-failed.vue b/src/client/app/common/views/components/connect-failed.vue index 96857c87a1..7329906f04 100644 --- a/src/client/app/common/views/components/connect-failed.vue +++ b/src/client/app/common/views/components/connect-failed.vue @@ -3,9 +3,9 @@ <img src="data:image/jpeg;base64,%base64:/assets/error.jpg%" alt=""/> <h1>%i18n:@title%</h1> <p class="text"> - {{ '%i18n:!@description%'.substr(0, '%i18n:!@description%'.indexOf('{')) }} + <span>{{ '%i18n:!@description%'.substr(0, '%i18n:!@description%'.indexOf('{')) }}</span> <a @click="reload">{{ '%i18n:!@description%'.match(/\{(.+?)\}/)[1] }}</a> - {{ '%i18n:!@description%'.substr('%i18n:!@description%'.indexOf('}') + 1) }} + <span>{{ '%i18n:!@description%'.substr('%i18n:!@description%'.indexOf('}') + 1) }}</span> </p> <button v-if="!troubleshooting" @click="troubleshooting = true">%i18n:@troubleshoot%</button> <x-troubleshooter v-if="troubleshooting"/> @@ -32,7 +32,7 @@ export default Vue.extend({ }, methods: { reload() { - location.reload(); + location.reload(true); } } }); |