Summary
ExportMenu only enables the CSV export option when a data prop is provided. The compliance page passes only targetRef to ExportMenu, with no data prop. Since NistComplianceDashboard keeps its exportable data internal, CSV export is permanently disabled on this page.
Affected file
src/UILayer/web/src/app/(app)/compliance/page.tsx — line 15
Required fix
Expose the exportable data from NistComplianceDashboard (e.g., via a callback prop or ref) and pass it to ExportMenu as the data prop.
References