Fixed filter linking
This commit is contained in:
parent
9fdbdfb713
commit
7b94c227f2
@ -318,7 +318,10 @@ export class ProjectOverviewScreenComponent implements OnInit, OnDestroy {
|
||||
filtersChanged(filters?: { [key: string]: FilterModel[] }): void {
|
||||
if (filters) {
|
||||
for (const key of Object.keys(filters)) {
|
||||
this[key] = filters[key];
|
||||
console.log(filters[key]);
|
||||
for (let idx = 0; idx < this[key].length; ++idx) {
|
||||
this[key][idx] = filters[key][idx];
|
||||
}
|
||||
}
|
||||
}
|
||||
this._filterFiles();
|
||||
|
||||
@ -243,7 +243,7 @@
|
||||
"legend": {
|
||||
"hints": "Hints only",
|
||||
"redactions": "Redacted",
|
||||
"suggestions": "Suggested Redaction"
|
||||
"requests": "Redaction requests"
|
||||
}
|
||||
},
|
||||
"file-preview": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user