diff --git a/components/home/BookshelfToolbar.vue b/components/home/BookshelfToolbar.vue
index 6bcb8940..70601e55 100644
--- a/components/home/BookshelfToolbar.vue
+++ b/components/home/BookshelfToolbar.vue
@@ -8,7 +8,7 @@
{{ totalEntities }} {{ entityTitle }}
{{ selectedSeriesName }} ({{ totalEntities }})
- {{ bookshelfListView ? 'view_list' : 'grid_view' }}
+ {{ !bookshelfListView ? 'view_list' : 'grid_view' }}
filter_alt
diff --git a/plugins/toast.js b/plugins/toast.js
index e624ffe2..f50283f0 100644
--- a/plugins/toast.js
+++ b/plugins/toast.js
@@ -1,10 +1,10 @@
-import Vue from "vue";
-import Toast from "vue-toastification";
-import "vue-toastification/dist/index.css";
+import Vue from "vue"
+import Toast from "vue-toastification"
+import "vue-toastification/dist/index.css"
const options = {
hideProgressBar: true,
position: 'bottom-center'
-};
+}
-Vue.use(Toast, options);
\ No newline at end of file
+Vue.use(Toast, options)
\ No newline at end of file