Revision 54673
Added by Konstantina Galouni almost 6 years ago
modules/uoa-connect-portal/trunk/src/app/searchPages/simple/searchProjects.component.ts | ||
---|---|---|
175 | 175 |
var value:Value = {name: value_names[i][j], id: value_original_ids[i][j], number:j, selected:false} |
176 | 176 |
values.push(value); |
177 | 177 |
} |
178 |
var filter:Filter = {title: filter_names[i], filterId: filter_ids[i], originalFilterId: filter_original_ids[i], values : values, countSelectedValues:0, "filterOperator": 'or' }; |
|
178 |
var filter:Filter = {title: filter_names[i], filterId: filter_ids[i], originalFilterId: filter_original_ids[i], values : values, countSelectedValues:0, "filterOperator": 'or'};//, valueIsExact: true };
|
|
179 | 179 |
filters.push(filter); |
180 | 180 |
console.info(filter); |
181 | 181 |
} |
modules/uoa-connect-portal/trunk/src/app/utils/subscribe/invite/invite.component.ts | ||
---|---|---|
141 | 141 |
} |
142 | 142 |
); |
143 | 143 |
} else { |
144 |
this.email.recipients = []; |
|
144 | 145 |
this.scroll(); |
145 | 146 |
this.status = this.errorCodes.DONE; |
146 | 147 |
} |
Also available in: Unified diff
1. searchProjects.component.ts: when branch 'changeDeposit' will be merged in trunk, add 'valueIsExact' field initialization in Filter.
2. invite.component: When not validating all emails, empty list of recipients from 'email' structure (next validation will fill it again).