Skip to content

Commit

Permalink
Merge branch 'master' into enhancement/tables-store-visible-columns
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Nov 30, 2023
2 parents 43decbe + fc4c1fd commit 0a525ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const HeaderLeft = ({ handleSearch, navigateToRecord, onRecordsUpdate, search, s
// Delete selected records
canDeleteSelectedRecords && <ButtonDelete showLabel={false} onClick={onDeleteButtonClick} />
}
{canCloneRecords && (
{canCloneRecords && totalCount > 0 && (
<Button iconClassName="icon-copy" label="dataView.records.clone" onClick={toggleRecordsCloneModalOpen} />
)}
{recordsCloneModalOpen && (
Expand Down

0 comments on commit 0a525ee

Please sign in to comment.