remove debugger in Et2Select

This commit is contained in:
milan 2024-08-14 14:20:21 +02:00
parent a2391779ab
commit df5120f04c

View File

@ -531,7 +531,6 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
const missing = filterBySelectOptions(value, this.select_options);
if(missing.length > 0)
{
debugger;
console.warn("Invalid option '" + missing.join(", ") + "' removed from " + this.id, this);
value = value.filter(item => missing.indexOf(item) == -1);
}