Renamed list actions to game board actions

This commit is contained in:
romancm 2019-05-16 22:34:59 -07:00
parent 42f3a25e67
commit e0a0c94364
2 changed files with 3 additions and 3 deletions

View file

@ -62,7 +62,7 @@
@update="updateLists" @update="updateLists"
/> />
<list-actions <game-board-actions
v-else v-else
@update="updateLists" @update="updateLists"
@scroll="scroll" @scroll="scroll"
@ -74,7 +74,7 @@
</template> </template>
<script> <script>
import ListActions from '@/components/Lists/ListActions'; import GameBoardActions from '@/components/GameBoard/GameBoardActions';
import GameBoardPlaceholder from '@/components/GameBoard/GameBoardPlaceholder'; import GameBoardPlaceholder from '@/components/GameBoard/GameBoardPlaceholder';
import Tag from '@/components/Tag/Tag'; import Tag from '@/components/Tag/Tag';
import ListAdd from '@/components/Lists/ListAdd'; import ListAdd from '@/components/Lists/ListAdd';
@ -95,7 +95,7 @@ export default {
draggable, draggable,
List, List,
// DevDebug, // DevDebug,
ListActions, GameBoardActions,
GameBoardPlaceholder, GameBoardPlaceholder,
ListAdd, ListAdd,
Tag, Tag,