chore: sync local workspace changes

This commit is contained in:
2026-05-07 11:03:47 +09:00
parent 2df0ba30cb
commit 82c0d8a197
217 changed files with 44873 additions and 1678 deletions

View File

@@ -346,6 +346,21 @@ export function ServerCommandPage() {
label: '확인시각',
children: formatDateTime(item.checkedAt),
},
{
key: 'latest-source-change-at',
label: '소스 수정일',
children: formatDateTime(item.latestSourceChangeAt),
},
{
key: 'latest-source-change-path',
label: '최근 소스 경로',
children: item.latestSourceChangePath?.trim() || '-',
},
{
key: 'latest-build-at',
label: '최신 빌드',
children: formatDateTime(item.latestBuiltAt),
},
{
key: 'content-type',
label: 'Content-Type',
@@ -401,6 +416,12 @@ export function ServerCommandPage() {
</Text>
) : null}
{item.updateSummary ? (
<Text type="secondary" className="server-command-page__preview">
{item.updateSummary}
</Text>
) : null}
{item.responsePreview ? (
<Text type="secondary" className="server-command-page__preview">
{item.responsePreview}