From 92cd1952766ea3c8c3dc72408e51f85f6b5da013 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Tue, 21 Feb 2023 02:32:18 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=82=AC=EB=A0=B9=EB=B6=80=20=ED=83=80?= =?UTF-8?q?=20=EC=88=98=EB=87=8C=20=ED=85=8D=EC=8A=A4=ED=8A=B8=20=EB=B3=B5?= =?UTF-8?q?=EC=82=AC=EC=9D=98=20=ED=84=B4=20=EC=88=9C=EC=84=9C=EB=8F=84=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/ChiefCenter/TopItem.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hwe/ts/ChiefCenter/TopItem.vue b/hwe/ts/ChiefCenter/TopItem.vue index 4977baec..6ad57a48 100644 --- a/hwe/ts/ChiefCenter/TopItem.vue +++ b/hwe/ts/ChiefCenter/TopItem.vue @@ -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;