feat(ui): 재수집 이력 화면 개선 — 배치 실행일시 추가, 작업명 잘림 해소, CSV 내보내기 제거 (#55)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
부모
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>
|
||||||
|
|||||||
불러오는 중...
Reference in New Issue
Block a user