File: settings-editor.elements.ts
line 39: let tempVal = this.value.map(x => x);
The variable this.value is always 'undefined' when creating the first configuration without any existing config. A check for this condition should be added to create an empty array in its place.
File: settings-editor.elements.ts line 39: let tempVal = this.value.map(x => x);
The variable
this.value
is always 'undefined' when creating the first configuration without any existing config. A check for this condition should be added to create an empty array in its place.