mirror of
https://github.com/romancm/gamebrary
synced 2025-02-25 11:17:10 +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">
|
<template lang="html">
|
||||||
<b-dropdown-item-button
|
<b-dropdown-item-button
|
||||||
v-b-modal="modalId"
|
v-b-modal="modalId"
|
||||||
|
|
|
@ -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,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue