Browse Source

Trim values in layers

pull/2620/head
Artur Arseniev 6 years ago
parent
commit
131a7187b5
  1. 2
      src/style_manager/model/Layer.js

2
src/style_manager/model/Layer.js

@ -59,6 +59,6 @@ export default Backbone.Model.extend({
getFullValue() {
let result = [];
this.get('properties').each(prop => result.push(prop.getFullValue()));
return result.join(' ');
return result.join(' ').trim();
}
});

Loading…
Cancel
Save