mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 04:24:57 +01:00
Fix multi-select in headers did not trigger update when a tag was removed
Value got passed around by reference, so as soon as the value was changed, activeFilters had the updated value. Now just leaving applyFilters() to do the check.
This commit is contained in:
parent
dcf34dd74c
commit
1ca751f17d
@ -3942,8 +3942,8 @@ export class et2_nextmatch_header_bar extends et2_DOMWidget implements et2_INext
|
||||
}
|
||||
}
|
||||
|
||||
// Update filters, if the value is different and we're not already doing so
|
||||
if((result || typeof result === 'undefined') && entry != _widget.getValue() && !header.update_in_progress)
|
||||
// Update filters, if we're not already doing so
|
||||
if((result || typeof result === 'undefined') && !header.update_in_progress)
|
||||
{
|
||||
// Widget will not have an entry in getValues() because nulls
|
||||
// are not returned, we remove it from activeFilters
|
||||
|
Loading…
Reference in New Issue
Block a user