Removing htmltags in list values

This commit is contained in:
2023-03-17 15:06:31 +01:00
parent 3db7c62b09
commit 2adecb99d2

View File

@@ -100,7 +100,7 @@ export class ListComponent implements OnInit {
parent = parent[key];
}
}
return parent;
return parent.replace(/<[^>]*>/g, '');
}
private _search() {