Added row count seperator in table entity (#8393)

This commit is contained in:
Ashish Gupta 2022-10-28 10:08:04 +05:30 committed by GitHub
parent e50876d284
commit 8e95e10da2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -372,7 +372,7 @@ const DatasetDetails: React.FC<DatasetDetailsProps> = ({
<span
className={classNames({
'tw--ml-6': rowData.length > 1,
})}>{`${tableProfile.rowCount || 0} rows`}</span>
})}>{`${tableProfile?.rowCount?.toLocaleString() || 0} rows`}</span>
</div>
);
} else {