diff --git a/package.json b/package.json index ec5df915..0a6b4d59 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "license": "MIT", "private": true, "scripts": { - "dev": "vue-cli-service serve --port 4000", + "dev": "vue-cli-service serve --port 4000 --open", "build": "vue-cli-service build", "test:unit": "vue-cli-service test:unit", "test:e2e": "vue-cli-service test:e2e", diff --git a/src/components/Lists/GameList.vue b/src/components/Lists/GameList.vue index b3c65e94..f9d7287f 100644 --- a/src/components/Lists/GameList.vue +++ b/src/components/Lists/GameList.vue @@ -13,90 +13,98 @@ :id="listIndex" > -
-

- - {{ list.name }} - + -
+

+ + diff --git a/src/components/Lists/SortList.vue b/src/components/Lists/SortList.vue index c3fde22e..26a68ca8 100644 --- a/src/components/Lists/SortList.vue +++ b/src/components/Lists/SortList.vue @@ -27,31 +27,7 @@ -
- - - - Games will be added to end of list, drag games to re-order. - - - - Games will be sorted by - - - {{ $t(`board.list.${sortOrder}`)}} - - - - @@ -65,15 +41,6 @@ export default { data() { return { - sortOrder: null, - saving: false, - sortingOptions: [ - { text: this.$t('board.list.sortByCustom'), value: 'sortByCustom' }, - { text: this.$t('board.list.sortByName'), value: 'sortByName' }, - { text: this.$t('board.list.sortByRating'), value: 'sortByRating' }, - { text: this.$t('board.list.sortByProgress'), value: 'sortByProgress' }, - // { text: 'Release date', value: 'sortByReleaseDate' }, - ], }; }, diff --git a/src/pages/BoardPage.vue b/src/pages/BoardPage.vue index a8393b4a..967978e5 100755 --- a/src/pages/BoardPage.vue +++ b/src/pages/BoardPage.vue @@ -14,7 +14,7 @@ class="mr-2" :to="{ name: 'edit-board', params: { id: board.id } }" > - Edit + Edit board