remove list preferences

This commit is contained in:
Gamebrary 2021-05-13 22:09:14 -07:00
parent fd68fdd640
commit ca0ac6c99b
2 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,5 @@
<!-- DEPRECATED -->
<!-- TODO: remove/merge with list settings -->
<template lang="html"> <template lang="html">
<b-dropdown-item-button <b-dropdown-item-button
v-b-modal="modalId" v-b-modal="modalId"

View file

@ -13,7 +13,7 @@
<sort-list :list="list" :list-index="listIndex" /> <sort-list :list="list" :list-index="listIndex" />
<rename-list :list="list" :list-index="listIndex" /> <rename-list :list="list" :list-index="listIndex" />
<change-list-view :list="list" :list-index="listIndex" /> <change-list-view :list="list" :list-index="listIndex" />
<list-preferences :list="list" :list-index="listIndex" /> <!-- <list-preferences :list="list" :list-index="listIndex" /> -->
<b-dropdown-item <b-dropdown-item
variant="danger" variant="danger"
@click="promptDeleteList" @click="promptDeleteList"
@ -50,7 +50,7 @@
<script> <script>
import ChangeListView from '@/components/Lists/ChangeListView'; import ChangeListView from '@/components/Lists/ChangeListView';
import RenameList from '@/components/Lists/RenameList'; import RenameList from '@/components/Lists/RenameList';
import ListPreferences from '@/components/Lists/ListPreferences'; // import ListPreferences from '@/components/Lists/ListPreferences';
import SortList from '@/components/Lists/SortList'; import SortList from '@/components/Lists/SortList';
import AddGameModal from '@/components/Lists/AddGameModal'; import AddGameModal from '@/components/Lists/AddGameModal';
import { mapState } from 'vuex'; import { mapState } from 'vuex';
@ -59,7 +59,7 @@ export default {
components: { components: {
ChangeListView, ChangeListView,
RenameList, RenameList,
ListPreferences, // ListPreferences,
AddGameModal, AddGameModal,
SortList, SortList,
}, },