forked from devsam/core
fix: 사령부 타 수뇌 텍스트 복사의 턴 순서도 수정
This commit is contained in:
@@ -168,9 +168,14 @@ function tryCopy() {
|
||||
const removeTagRegEx = /<[^>]*>?/g;
|
||||
|
||||
function tryTextCopy() {
|
||||
const actions = queryActionHelper.extractQueryActions();
|
||||
const rawActions = queryActionHelper.extractQueryActions();
|
||||
isCopyButtonShown.value = false;
|
||||
|
||||
const actions = queryActionHelper.amplifyQueryActions(rawActions, queryActionHelper.getSelectedTurnList());
|
||||
if (actions.length === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
const turnBriefs: [number, string][] = [];
|
||||
for (const action of actions) {
|
||||
const [turnIdxList, turnObj] = action;
|
||||
|
||||
Reference in New Issue
Block a user