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]} />