feat(ui): 재수집 이력 화면 개선 — 배치 실행일시 추가, 작업명 잘림 해소, CSV 내보내기 제거 (#55)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
HYOJIN 2026-03-17 09:18:37 +09:00
부모 d8f2c74b4e
커밋 a30987dba2

파일 보기

@ -882,17 +882,6 @@ const RECOLLECTS_GUIDE = [
</button> </button>
)} )}
<button
onClick={() => batchApi.exportRecollectionHistories({
apiKey: selectedApiKey || undefined,
status: statusFilter !== 'ALL' ? statusFilter : undefined,
fromDate: useSearch && startDate ? `${startDate}T00:00:00` : undefined,
toDate: useSearch && endDate ? `${endDate}T23:59:59` : undefined,
})}
className="px-4 py-2 text-sm font-medium text-wing-text border border-wing-border rounded-lg hover:bg-wing-hover transition-colors"
>
CSV
</button>
</div> </div>
</div> </div>
</div> </div>
@ -920,6 +909,7 @@ const RECOLLECTS_GUIDE = [
<th className="px-4 py-3 font-medium"> ID</th> <th className="px-4 py-3 font-medium"> ID</th>
<th className="px-4 py-3 font-medium"></th> <th className="px-4 py-3 font-medium"></th>
<th className="px-4 py-3 font-medium"></th> <th className="px-4 py-3 font-medium"></th>
<th className="px-4 py-3 font-medium"> </th>
<th className="px-4 py-3 font-medium"> </th> <th className="px-4 py-3 font-medium"> </th>
<th className="px-4 py-3 font-medium"> </th> <th className="px-4 py-3 font-medium"> </th>
<th className="px-4 py-3 font-medium"></th> <th className="px-4 py-3 font-medium"></th>
@ -937,7 +927,7 @@ const RECOLLECTS_GUIDE = [
#{hist.historyId} #{hist.historyId}
</td> </td>
<td className="px-4 py-4 text-wing-text"> <td className="px-4 py-4 text-wing-text">
<div className="max-w-[120px] truncate" title={displayNameMap[hist.apiKey] || hist.apiKeyName || hist.apiKey}> <div title={displayNameMap[hist.apiKey] || hist.apiKeyName || hist.apiKey}>
{displayNameMap[hist.apiKey] || hist.apiKeyName || hist.apiKey} {displayNameMap[hist.apiKey] || hist.apiKeyName || hist.apiKey}
</div> </div>
</td> </td>
@ -958,6 +948,9 @@ const RECOLLECTS_GUIDE = [
!</span> !</span>
)} )}
</td> </td>
<td className="px-4 py-4 text-wing-muted whitespace-nowrap text-xs">
<div>{formatDateTime(hist.executionStartTime)}</div>
</td>
<td className="px-4 py-4 text-wing-muted whitespace-nowrap text-xs"> <td className="px-4 py-4 text-wing-muted whitespace-nowrap text-xs">
<div>{formatDateTime(hist.rangeFromDate)}</div> <div>{formatDateTime(hist.rangeFromDate)}</div>
</td> </td>