We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3056f2e + ead0fc6 commit bed7cf9Copy full SHA for bed7cf9
quick-start/src/main/resources/static/app/mlcp/mlcp.groups.js
@@ -241,7 +241,7 @@
241
angular.forEach(groups, function(group) {
242
angular.forEach(group.settings, function(setting) {
243
if (setting.field === key) {
244
- setting.value = value.replace(/"/g, '');
+ setting.value = (value && value.replace) ? value.replace(/"/g, '') : value;
245
}
246
});
247
0 commit comments