From cbf82d3b4cf66076c0e6d03189f21fc93791c6b9 Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Sat, 20 Oct 2018 12:46:46 +0200 Subject: [PATCH] Remove inactive topics --- client/src/components/BookSidebar.vue | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/client/src/components/BookSidebar.vue b/client/src/components/BookSidebar.vue index ddee0482..751b2fe4 100644 --- a/client/src/components/BookSidebar.vue +++ b/client/src/components/BookSidebar.vue @@ -19,17 +19,7 @@ data: () => { return { topics: [ - {id: 1, title: 'Berufliche Grundbildung', active: true}, - {id: 2, title: 'Geld und Kauf'}, - {id: 3, title: 'Risiko und Sicherheit'}, - {id: 4, title: 'Demokratie und Mitgestaltung'}, - {id: 5, title: 'Kultur und Kunst'}, - {id: 6, title: 'Die Schweiz in Europa und der Welt'}, - {id: 7, title: 'Markt und Konsum'}, - {id: 8, title: 'Globale Herausforderungen'}, - {id: 9, title: 'Wohnen und Zusammenleben'}, - {id: 10, title: 'Arbeit und Zukunft'}, - {id: 11, title: 'Grundsätzliches zum Recht'} + {id: 2, title: 'Geld und Kauf', active: true}, ] } }