Rename GameDetail component to Game

This commit is contained in:
Roman Cervantes 2019-11-21 13:58:06 -07:00
parent dfd908b956
commit 8ca142a916
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@
large
@close="closeGame"
>
<game-detail
<game
v-if="gameDetailId"
slot="content"
:id="gameDetailId"
@ -81,7 +81,7 @@ import Tag from '@/components/Tag';
import ListAdd from '@/components/Lists/ListAdd';
import Modal from '@/components/Modal';
import List from '@/components/Lists/List';
import GameDetail from '@/pages/GameDetail';
import Game from '@/pages/Game';
import { chunk } from 'lodash';
import { mapState } from 'vuex';
import draggable from 'vuedraggable';
@ -93,7 +93,7 @@ export default {
GameBoardPlaceholder,
ListAdd,
Tag,
GameDetail,
Game,
Modal,
},