diff --git a/frontend/src/features/shadow-run/pages/ShadowRunQueue.vue b/frontend/src/features/shadow-run/pages/ShadowRunQueue.vue index afd02933..57e2916d 100644 --- a/frontend/src/features/shadow-run/pages/ShadowRunQueue.vue +++ b/frontend/src/features/shadow-run/pages/ShadowRunQueue.vue @@ -135,16 +135,12 @@ const handleRetry = () => { -
-
-

Shadow Run Jobs ({{ filteredJobs.length }})

- -
-
+ @@ -225,8 +221,8 @@ h1 { .filters { display: grid; grid-template-columns: 1fr 150px; - gap: var(--spacing-4); - margin-bottom: var(--spacing-5); + gap: var(--ks-space-2); + margin-bottom: 0; } .input { diff --git a/frontend/src/shared/ui/DataGridShell.vue b/frontend/src/shared/ui/DataGridShell.vue index 47400861..4f784c76 100644 --- a/frontend/src/shared/ui/DataGridShell.vue +++ b/frontend/src/shared/ui/DataGridShell.vue @@ -7,10 +7,11 @@ const props = withDefaults(defineProps<{ columns: UiGridColumn[] loading?: boolean emptyMessage?: string + height?: string page?: number pageSize?: number total?: number -}>(), { loading: false, emptyMessage: '표시할 데이터가 없습니다.' }) +}>(), { loading: false, emptyMessage: '표시할 데이터가 없습니다.', height: 'calc(100vh - 230px)' }) const emit = defineEmits<{ pageChange: [value: { page: number; pageSize: number }] }>() @@ -18,7 +19,7 @@ const emit = defineEmits<{ pageChange: [value: { page: number; pageSize: number

데이터를 불러오는 중입니다.

{{ emptyMessage }}

- +