{
e.stopPropagation();
e.preventDefault();
}}
onMouseDown={(e) => {
e.stopPropagation();
e.preventDefault();
}}
onMouseUp={(e) => {
e.stopPropagation();
e.preventDefault();
}}
>
{adminMode && (
)}
{AddToDashboardEnabled && (
)}
{(ImageDownloadEnabled || ReportDownloadEnabled) && (
{ReportDownloadEnabled && (
<>
Reports
onDownload("xlsx")}
>
Download as excel
onDownload("csv")}
>
Download as CSV
>
)}
{ImageDownloadEnabled && ReportDownloadEnabled && (
)}
{ImageDownloadEnabled && (
<>
Images
onDownload("svg")}
>
Download as SVG
onDownload("png")}
>
Download as PNG
onDownload("jpeg")}
>
Download as JPEG
>
)}
)}