mirror of https://github.com/buster-so/buster.git
download three dot update
This commit is contained in:
parent
5708592a51
commit
a2c8d68258
|
@ -168,6 +168,7 @@ export const useDownloadMetricDataCSV = ({
|
|||
{ id: metricId, versionNumber: metricVersionNumber, cacheDataId },
|
||||
{ enabled: false }
|
||||
);
|
||||
const { mutateAsync: handleDownload, isPending: isDownloading } = useDownloadMetricFile();
|
||||
|
||||
return useMemo(
|
||||
() => ({
|
||||
|
|
|
@ -383,7 +383,7 @@ const DropdownItem = <
|
|||
const renderContent = () => {
|
||||
const content = (
|
||||
<>
|
||||
{icon && !loading && <span className="text-icon-color text-lg">{icon}</span>}
|
||||
{icon && <span className="text-icon-color text-lg">{icon}</span>}
|
||||
<div className={cn('flex flex-col space-y-1', truncate && 'overflow-hidden')}>
|
||||
<span className={cn(truncate && 'truncate')}>{label}</span>
|
||||
{secondaryLabel && <span className="text-gray-light text-xs">{secondaryLabel}</span>}
|
||||
|
|
Loading…
Reference in New Issue