diff --git a/src/app/production/recording/page.tsx b/src/app/production/recording/page.tsx index fbbac7cb..368a59ea 100644 --- a/src/app/production/recording/page.tsx +++ b/src/app/production/recording/page.tsx @@ -2,7 +2,7 @@ import RecordingTable from '@/components/pages/production/recording/RecordingTab const Recording = () => { return ( -
+
); diff --git a/src/components/pages/production/recording/RecordingTable.tsx b/src/components/pages/production/recording/RecordingTable.tsx index bd26670d..13737cf3 100644 --- a/src/components/pages/production/recording/RecordingTable.tsx +++ b/src/components/pages/production/recording/RecordingTable.tsx @@ -1173,131 +1173,132 @@ const RecordingTable = () => { return ( <>
-
- {/* Action Buttons, Search and Filter Section */} -
- {/* Action Buttons */} -
- - - - - {selectedRowIds.length > 0 && ( - <> - - - - - - - - - )} -
- - {/* Search and Filter */} -
- - } - className={{ - wrapper: 'w-full min-w-24 max-w-3xs', - inputWrapper: 'rounded-xl! shadow-button-soft', - input: - 'placeholder:font-semibold placeholder:text-base-content/50', - }} - /> - +
+ {/* Action Buttons */} +
+ + - -
+ {selectedRowIds.length > 0 && ( + <> +
+ + + + + + + + + + )}
- {/* Table Section */} + {/* Search and Filter */} +
+ + } + className={{ + wrapper: 'w-full min-w-24 max-w-3xs', + inputWrapper: 'rounded-xl! shadow-button-soft', + input: + 'placeholder:font-semibold placeholder:text-base-content/50', + }} + /> + + + + +
+
+ + {/* Table Section */} +
{isLoading ? (
@@ -1335,7 +1336,7 @@ const RecordingTable = () => { rowSelection={rowSelection} setRowSelection={setRowSelection} className={{ - containerClassName: cn('mt-3 mb-0', { + containerClassName: cn('p-3 mb-0', { 'w-full': isResponseSuccess(recordings) && recordings?.data?.length === 0,