diff --git a/lib/www/client/source/src/views/ProjectList.vue b/lib/www/client/source/src/views/ProjectList.vue
index 8a82782..f38317d 100644
--- a/lib/www/client/source/src/views/ProjectList.vue
+++ b/lib/www/client/source/src/views/ProjectList.vue
@@ -1,14 +1,27 @@
+
- {{value}}
+
+ {{value}}
+ mdi-archive-outline
+
+
+ {{value}}
+
+
+
@@ -27,6 +40,19 @@
/>
+
+
+
+ Show archived projects
+
+
+
@@ -79,11 +105,20 @@ export default {
],
items: [],
options: {},
+
+ showArchived: true,
+
}
},
computed: {
...mapGetters(['loading', 'serverEvent'])
+ displayItems () {
+ return this.showArchived
+ ? this.items
+ : this.items.filter(i => !i.archived);
+ },
+
},
watch: {