chore: sync local workspace changes
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user