mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-09 01:24:07 +01:00
SearchMixin: Fix select option not having class causes JS error
Fixes addressbook edit popup does not resize
This commit is contained in:
parent
f56c0749b3
commit
46795ec108
@ -383,7 +383,8 @@ export const Et2WithSearchMixin = <T extends Constructor<LitElement>>(superclass
|
||||
if(changedProperties.has("value") && this.value)
|
||||
{
|
||||
// Overridden to add options if allowFreeEntries=true
|
||||
if(this.allowFreeEntries && typeof this.value == "string" && !this.select_options.find(o => o.value == this.value && !o.class.includes('remote')))
|
||||
if(this.allowFreeEntries && typeof this.value == "string" && !this.select_options.find(o => o.value == this.value &&
|
||||
(!o.class || o.class && !o.class.includes('remote'))))
|
||||
{
|
||||
this.createFreeEntry(this.value);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user