diff --git a/src/components/Dashboard/common/ExportListButton.jsx b/src/components/Dashboard/common/ExportListButton.jsx index e95c3dc..78da46c 100644 --- a/src/components/Dashboard/common/ExportListButton.jsx +++ b/src/components/Dashboard/common/ExportListButton.jsx @@ -34,7 +34,7 @@ const ExportListButton = ({ const menuItems = [ { key: 'excel', - label: excelLoading ? 'Exporting...' : 'Microsoft Excel', + label: excelLoading ? 'Exporting...' : 'Excel File', icon: , disabled: exportLoading, children: [ @@ -54,12 +54,6 @@ const ExportListButton = ({ } ] }, - { - key: 'odata', - label: 'OData Connection', - icon: , - onClick: () => setOdataModalOpen(true) - }, { key: 'csv', label: csvLoading ? 'Exporting...' : 'CSV File', @@ -73,6 +67,15 @@ const ExportListButton = ({ setCsvLoading(false) } } + }, + { + type: 'divider' + }, + { + key: 'odata', + label: 'OData Connection', + icon: , + onClick: () => setOdataModalOpen(true) } ]