mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-17 19:01:04 +01:00
Add missing egw_app js compiled file from commit dca3c06b47
This commit is contained in:
parent
6b50299d8a
commit
96d6b22db7
@ -263,10 +263,12 @@ var EgwApp = /** @class */ (function () {
|
||||
for (var _i = 0, _a = Object.values(filters); _i < _a.length; _i++) {
|
||||
var field_filter = _a[_i];
|
||||
var val = value.col_filter[field_filter.col];
|
||||
if (val && (typeof val == "string" && val.trim().length > 0 ||
|
||||
typeof val == "object" && !jQuery.isEmptyObject(val))) {
|
||||
if (val && (typeof val == "string" && val.trim().length > 0)) {
|
||||
field_filter.filter_values.push(val);
|
||||
}
|
||||
else if (val && typeof val == "object" && !jQuery.isEmptyObject(val)) {
|
||||
field_filter.filter_values = field_filter.filter_values.concat(Object.values(val));
|
||||
}
|
||||
}
|
||||
var _loop_2 = function (field_filter) {
|
||||
// no filter set
|
||||
|
Loading…
Reference in New Issue
Block a user