CHE 아이템 상태 동결로 인한 턴 정지 수정

This commit is contained in:
2026-08-29 08:56:40 +00:00
parent 23678df9de
commit 52a75ca9b7
7 changed files with 89 additions and 3 deletions
@@ -205,6 +205,7 @@ type AdminProfile = {
tournamentRunning: boolean;
};
buildCommitSha?: string;
lastError?: string;
activeOperation?: {
id: string;
status: 'QUEUED' | 'RUNNING';
@@ -2443,6 +2444,18 @@ onMounted(() => {
<div class="text-xs text-zinc-400">빌드 커밋: {{ profile.buildCommitSha ?? '미지정' }}</div>
<div
v-if="profile.status === 'PAUSED' && profile.lastError"
class="rounded border border-red-700/70 bg-red-950/40 p-3 text-sm text-red-100"
role="alert"
data-testid="profile-pause-reason"
>
<div class="font-semibold">턴 정지 사유</div>
<div class="mt-1 break-words font-mono text-xs text-red-200">
{{ profile.lastError }}
</div>
</div>
<div
v-if="
hasCapability('admin.scenarios.reset', profile.profileName) &&