diff --git a/src/components/archiveList.vue b/src/components/archiveList.vue
index f244f4e..34c3498 100644
--- a/src/components/archiveList.vue
+++ b/src/components/archiveList.vue
@@ -32,7 +32,7 @@ This file is part of ArciveList.
v-on:click="setActiveColumn('title')">
Title
+ v-bind:class="{activeColumn: isActiveCol('title')}">
@@ -40,7 +40,7 @@ This file is part of ArciveList.
v-on:click="setActiveColumn('artist')">
Artist
+ v-bind:class="{activeColumn: isActiveCol('artist')}">
@@ -48,7 +48,7 @@ This file is part of ArciveList.
v-on:click="setActiveColumn('collection')">
Collection
+ v-bind:class="{activeColumn: isActiveCol('collection')}">
@@ -56,7 +56,7 @@ This file is part of ArciveList.
v-on:click="setActiveColumn('date')">
Date
+ v-bind:class="{activeColumn: isActiveCol('date')}">
@@ -70,7 +70,7 @@ This file is part of ArciveList.