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

병합
HYOJIN feature/ISSUE-55-recollect-ui-enhancement 에서 develop 로 2 commits 를 머지했습니다 2026-03-17 09:20:03 +09:00
Showing only changes of commit a30987dba2 - Show all commits

파일 보기

@ -882,17 +882,6 @@ const RECOLLECTS_GUIDE = [
</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>
@ -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"></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}
</td>
<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}
</div>
</td>
@ -958,6 +948,9 @@ const RECOLLECTS_GUIDE = [
!</span>
)}
</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">
<div>{formatDateTime(hist.rangeFromDate)}</div>
</td>