mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-08-30 07:07:22 +02:00
Update:List view/grid view icon swapped
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
<p v-show="!selectedSeriesName" class="font-book pt-1">{{ totalEntities }} {{ entityTitle }}</p>
|
<p v-show="!selectedSeriesName" class="font-book pt-1">{{ totalEntities }} {{ entityTitle }}</p>
|
||||||
<p v-show="selectedSeriesName" class="ml-2 font-book pt-1">{{ selectedSeriesName }} ({{ totalEntities }})</p>
|
<p v-show="selectedSeriesName" class="ml-2 font-book pt-1">{{ selectedSeriesName }} ({{ totalEntities }})</p>
|
||||||
<div class="flex-grow" />
|
<div class="flex-grow" />
|
||||||
<span v-if="page == 'library' || seriesBookPage" class="material-icons px-2" @click="bookshelfListView = !bookshelfListView">{{ bookshelfListView ? 'view_list' : 'grid_view' }}</span>
|
<span v-if="page == 'library' || seriesBookPage" class="material-icons px-2" @click="bookshelfListView = !bookshelfListView">{{ !bookshelfListView ? 'view_list' : 'grid_view' }}</span>
|
||||||
<template v-if="page === 'library'">
|
<template v-if="page === 'library'">
|
||||||
<div class="relative flex items-center px-2">
|
<div class="relative flex items-center px-2">
|
||||||
<span class="material-icons" @click="showFilterModal = true">filter_alt</span>
|
<span class="material-icons" @click="showFilterModal = true">filter_alt</span>
|
||||||
|
|||||||
+5
-5
@@ -1,10 +1,10 @@
|
|||||||
import Vue from "vue";
|
import Vue from "vue"
|
||||||
import Toast from "vue-toastification";
|
import Toast from "vue-toastification"
|
||||||
import "vue-toastification/dist/index.css";
|
import "vue-toastification/dist/index.css"
|
||||||
|
|
||||||
const options = {
|
const options = {
|
||||||
hideProgressBar: true,
|
hideProgressBar: true,
|
||||||
position: 'bottom-center'
|
position: 'bottom-center'
|
||||||
};
|
}
|
||||||
|
|
||||||
Vue.use(Toast, options);
|
Vue.use(Toast, options)
|
||||||
Reference in New Issue
Block a user