From 8705128a9ed4f95e5f8ef4d62db5950d7b11775f Mon Sep 17 00:00:00 2001 From: Senthamilselvi Date: Mon, 3 Nov 2025 10:54:32 +0530 Subject: [PATCH] establishment user dashboard table empty column data added --- .../src/components/dashboard/SubmissionHistory.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ipi-survey-platform/src/components/dashboard/SubmissionHistory.jsx b/ipi-survey-platform/src/components/dashboard/SubmissionHistory.jsx index 0a12035..036d2b8 100644 --- a/ipi-survey-platform/src/components/dashboard/SubmissionHistory.jsx +++ b/ipi-survey-platform/src/components/dashboard/SubmissionHistory.jsx @@ -65,7 +65,7 @@ export const SubmissionHistory = ({ history = [], loading = false, error = '' }) if (!Array.isArray(history)) return []; return history.map((entry, index) => ({ id: entry?.id ?? index, - survey_name: '—', + survey_name: 'Industrial Producation Survey', year: entry?.year || '—', quarter: entry?.quarter || '—', status: entry?.status || 'Pending', @@ -181,6 +181,7 @@ export const SubmissionHistory = ({ history = [], loading = false, error = '' }) beforeHeader={toolbar} separated rowGapClass="border-spacing-y-2" + columnWidths={[300, 100, 100, 120, 180, 120, 120]} />