forked from edward/owl-map
All items filters selected by default, for now.
This commit is contained in:
parent
b825bb68cc
commit
6c46c3713a
|
@ -1342,9 +1342,10 @@ export default {
|
||||||
this.clear_isa();
|
this.clear_isa();
|
||||||
this.isa_list = response.data.isa_count;
|
this.isa_list = response.data.isa_count;
|
||||||
this.isa_list.forEach(isa => {
|
this.isa_list.forEach(isa => {
|
||||||
if (this.detail_qid || this.item_type_filters.length) {
|
this.isa_ticked.push(isa.qid);
|
||||||
|
/* if (this.detail_qid || this.item_type_filters.length) {
|
||||||
this.isa_ticked.push(isa.qid);
|
this.isa_ticked.push(isa.qid);
|
||||||
}
|
} */
|
||||||
this.isa_labels[isa.qid] = isa.label;
|
this.isa_labels[isa.qid] = isa.label;
|
||||||
this.isa_lookup[isa.qid] = isa;
|
this.isa_lookup[isa.qid] = isa;
|
||||||
});
|
});
|
||||||
|
@ -1455,9 +1456,10 @@ export default {
|
||||||
if (this.isa_lookup[isa.qid] === undefined) {
|
if (this.isa_lookup[isa.qid] === undefined) {
|
||||||
this.isa_lookup[isa.qid] = isa;
|
this.isa_lookup[isa.qid] = isa;
|
||||||
this.isa_list.push(isa);
|
this.isa_list.push(isa);
|
||||||
if (this.detail_qid || this.item_type_filters.length) {
|
this.isa_ticked.push(isa.qid);
|
||||||
|
/* if (this.detail_qid || this.item_type_filters.length) {
|
||||||
this.isa_ticked.push(isa.qid);
|
this.isa_ticked.push(isa.qid);
|
||||||
}
|
} */
|
||||||
} else {
|
} else {
|
||||||
this.isa_lookup[isa.qid].count += 1;
|
this.isa_lookup[isa.qid].count += 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue