From 9aa5cad9bcf38dfd959d11874b9b67dd0b1a3860 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Thu, 22 Jul 2021 15:29:44 +0200 Subject: [PATCH] start with no item types ticked --- frontend/App.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/App.vue b/frontend/App.vue index 3d7ae60..3b6894e 100644 --- a/frontend/App.vue +++ b/frontend/App.vue @@ -1280,7 +1280,6 @@ export default { this.clear_isa(); this.isa_list = response.data.isa_count; this.isa_list.forEach(isa => { - this.isa_ticked.push(isa.qid); this.isa_labels[isa.qid] = isa.label; this.isa_lookup[isa.qid] = isa; }); @@ -1383,7 +1382,6 @@ export default { if (this.isa_lookup[isa.qid] === undefined) { this.isa_lookup[isa.qid] = isa; this.isa_list.push(isa); - this.isa_ticked.push(isa.qid); } else { this.isa_lookup[isa.qid].count += 1; }