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 Skovhede <kenneth@hexad.dk>2020-12-19 17:02:31 +0300
committerGitHub <noreply@github.com>2020-12-19 17:02:31 +0300
commitd2189933e8dfa936efd4ee3044206f150339efec (patch)
treeac0d0ea587081ad60cfca1eb6f514a976133d535 /Duplicati/Server
parente070af3dd11f3b0371392cb8cd1784034a76740e (diff)
parente4f056f3dd19a8ebbc92186d534ad051ac288365 (diff)
Merge pull request #4392 from warwickmm/fix_edit_uri_backend_config_typo
Fix bug in showing OpenStack configuration error dialog
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.'));