Add a message when no configuration options are available
This commit is contained in:
parent
ff86c85a8a
commit
83390fc05c
2 changed files with 6 additions and 0 deletions
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue