mirror of
https://github.com/romancm/gamebrary
synced 2024-11-27 13:40:48 +00:00
remove list preferences
This commit is contained in:
parent
fd68fdd640
commit
ca0ac6c99b
2 changed files with 5 additions and 3 deletions
|
@ -1,3 +1,5 @@
|
|||
<!-- DEPRECATED -->
|
||||
<!-- TODO: remove/merge with list settings -->
|
||||
<template lang="html">
|
||||
<b-dropdown-item-button
|
||||
v-b-modal="modalId"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<sort-list :list="list" :list-index="listIndex" />
|
||||
<rename-list :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
|
||||
variant="danger"
|
||||
@click="promptDeleteList"
|
||||
|
@ -50,7 +50,7 @@
|
|||
<script>
|
||||
import ChangeListView from '@/components/Lists/ChangeListView';
|
||||
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 AddGameModal from '@/components/Lists/AddGameModal';
|
||||
import { mapState } from 'vuex';
|
||||
|
@ -59,7 +59,7 @@ export default {
|
|||
components: {
|
||||
ChangeListView,
|
||||
RenameList,
|
||||
ListPreferences,
|
||||
// ListPreferences,
|
||||
AddGameModal,
|
||||
SortList,
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue