diff --git a/js/control/Profile.js b/js/control/Profile.js index 9e1865d..a807ba6 100644 --- a/js/control/Profile.js +++ b/js/control/Profile.js @@ -190,6 +190,11 @@ BR.Profile = L.Evented.extend({ } var paramsSection = L.DomUtil.get('profile_params'); paramsSection.innerHTML = ''; + + if (!Object.keys(params).length) { + paramsSection.append(i18next.t('sidebar.profile.no_easy_configuration_warning')); + } + Object.keys(params).forEach(function(param) { var div = document.createElement('div'); var label = document.createElement('label'); diff --git a/locales/en.json b/locales/en.json index e64ea00..ad7ca4d 100644 --- a/locales/en.json +++ b/locales/en.json @@ -196,6 +196,7 @@ "profile": { "clear": "Clear", "help": "Help", + "no_easy_configuration_warning": "No easy configuration is available for this profile.", "placeholder": "Write your custom profile here.", "save": "Save", "switch_advanced": "Switch to advanced editor",