Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Hsu <kennethhsu@gmail.com>2020-12-13 02:05:58 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2020-12-13 02:08:37 +0300
commite4f056f3dd19a8ebbc92186d534ad051ac288365 (patch)
tree29cb6afbc8dc0a6e2cb3b5860f7f124758e48879 /Duplicati/Server
parent7d958adb8a71b334834ce42ecc9571c78e8a259e (diff)
Fix bug in showing OpenStack configuration error dialog.
This fixes #4110.
Diffstat (limited to 'Duplicati/Server')
-rw-r--r--Duplicati/Server/webroot/ngax/scripts/services/EditUriBuiltins.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/Server/webroot/ngax/scripts/services/EditUriBuiltins.js b/Duplicati/Server/webroot/ngax/scripts/services/EditUriBuiltins.js
index 5fd65207b..82f97f95e 100644
--- a/Duplicati/Server/webroot/ngax/scripts/services/EditUriBuiltins.js
+++ b/Duplicati/Server/webroot/ngax/scripts/services/EditUriBuiltins.js
@@ -994,7 +994,7 @@ backupApp.service('EditUriBuiltins', function (AppService, AppUtils, SystemInfo,
res = EditUriBackendConfig.show_error_dialog(gettextCatalog.getString('You must enter a domain name to use v3 API'));
if (res && ((scope.openstack_tenantname) || '').trim().length == 0)
- res = EditUriBackendCOnfig.show_error_dialog(gettextCatalog.getString('You must enter a tenant (aka project) name to use v3 API'));
+ res = EditUriBackendConfig.show_error_dialog(gettextCatalog.getString('You must enter a tenant (aka project) name to use v3 API'));
if (res && (scope.openstack_apikey || '').trim().length != 0)
res = EditUriBackendConfig.show_error_dialog(gettextCatalog.getString('Openstack API Key are not supported in v3 keystone API.'));