1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

fix: closing ask credential modal during a connection doesn't stops loading, closes #114

This commit is contained in:
2021-10-05 18:20:38 +02:00
parent 2480c76a08
commit 26446fb7ed
3 changed files with 3 additions and 0 deletions

View File

@ -454,6 +454,7 @@ export default {
closeAsking () { closeAsking () {
this.isTesting = false; this.isTesting = false;
this.isAsking = false; this.isAsking = false;
this.isConnecting = false;
}, },
selectTab (tab) { selectTab (tab) {
this.selectedTab = tab; this.selectedTab = tab;

View File

@ -12,6 +12,7 @@ const i18n = new VueI18n({
'fr-FR': require('./fr-FR'), 'fr-FR': require('./fr-FR'),
'pt-BR': require('./pt-BR'), 'pt-BR': require('./pt-BR'),
'de-DE': require('./de-DE'), 'de-DE': require('./de-DE'),
'vi-VN': require('./vi-VN'),
'ja-JP': require('./ja-JP') 'ja-JP': require('./ja-JP')
} }
}); });

View File

@ -6,5 +6,6 @@ export default {
'fr-FR': 'Français', 'fr-FR': 'Français',
'pt-BR': 'Português (Brasil)', 'pt-BR': 'Português (Brasil)',
'de-DE': 'Deutsch (Deutschland)', 'de-DE': 'Deutsch (Deutschland)',
'vi-VN': 'Tiếng Việt',
'ja-JP': '日本語' 'ja-JP': '日本語'
}; };