Skip to content

Commit 55a1500

Browse files
committed
Remove extra check on isDisabled
1 parent aad48e7 commit 55a1500

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/clusters/ClusterTransfer/ClusterTransferList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ const ClusterTransferPageHeader = ({
133133
viewType={viewConstants.CLUSTER_TRANSFER_VIEW}
134134
viewOptions={viewOptions}
135135
variant="top"
136-
isDisabled={showSpinner || !viewOptions.totalCount}
136+
isDisabled={showSpinner}
137137
/>
138138
</FlexItem>
139139
</Flex>
@@ -334,7 +334,7 @@ const ClusterTransferList = ({ hideRefreshButton }: { hideRefreshButton?: boolea
334334
viewType={viewConstants.CLUSTER_TRANSFER_VIEW}
335335
viewOptions={viewOptions}
336336
variant="bottom"
337-
isDisabled={isLoading || !viewOptions.totalCount}
337+
isDisabled={isLoading}
338338
/>
339339
</CardFooter>
340340
</Card>

0 commit comments

Comments
 (0)