fix: 최근 실행 턴이 '선택 해제된 턴'을 따르지 않는 버그 수정

This commit is contained in:
2022-04-04 21:40:54 +09:00
parent eac9b7c2e2
commit 222c8a25a4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -68,7 +68,7 @@
<BDropdownItem
v-for="(action, idx) of Array.from(recentActions.values()).reverse()"
:key="idx"
@click="void reserveCommandDirect([[Array.from(selectedTurnList.values()), action]])"
@click="void reserveCommandDirect([[queryActionHelper.getSelectedTurnList(), action]])"
>
{{ action.brief }}
</BDropdownItem>
+1 -1
View File
@@ -83,7 +83,7 @@
<BDropdownItem
v-for="(action, idx) in Array.from(recentActions.values()).reverse()"
:key="idx"
@click="void reserveCommandDirect([[Array.from(selectedTurnList.values()), action]])"
@click="void reserveCommandDirect([[queryActionHelper.getSelectedTurnList(), action]])"
>
{{ action.brief }}
</BDropdownItem>