start with no item types ticked

This commit is contained in:
Edward Betts 2021-07-22 15:29:44 +02:00
parent 8d8f16d757
commit 9aa5cad9bc
1 changed files with 0 additions and 2 deletions

View File

@ -1280,7 +1280,6 @@ 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 => {
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;
}); });
@ -1383,7 +1382,6 @@ 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);
this.isa_ticked.push(isa.qid);
} else { } else {
this.isa_lookup[isa.qid].count += 1; this.isa_lookup[isa.qid].count += 1;
} }