Skip to content
Snippets Groups Projects
Commit 9714474d authored by rhenck's avatar rhenck
Browse files

[editor] Fix unregistering of deleted Likert rows

parent a6cd6aab
No related branches found
No related tags found
No related merge requests found
...@@ -188,6 +188,7 @@ export class OptionsFieldSetComponent { ...@@ -188,6 +188,7 @@ export class OptionsFieldSetComponent {
removeLikertRow(index: number): void { removeLikertRow(index: number): void {
const valueList = this.combinedProperties.rows as LikertRowElement[]; const valueList = this.combinedProperties.rows as LikertRowElement[];
valueList[index].unregisterIDs();
valueList.splice(index, 1); valueList.splice(index, 1);
this.updateModel.emit({ property: 'rows', value: valueList }); this.updateModel.emit({ property: 'rows', value: valueList });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment