Skip to content

Commit 1c7b62a

Browse files
committed
fix: DeploymentHistoryConfigDiffCompare - not able to see previous pipeline deployments after the initial load fix
1 parent 62b55ec commit 1c7b62a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Shared/Components/CICDHistory/DeploymentHistoryConfigDiff/DeploymentHistoryConfigDiffCompare.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export const DeploymentHistoryConfigDiffCompare = ({
5151
const [triggerHistory, setTriggerHistory] = useState({
5252
isLoading: false,
5353
data: initialTriggerHistory,
54-
hasMore: initialTriggerHistory.size === paginationSize,
54+
hasMore: initialTriggerHistory.size >= paginationSize,
5555
})
5656
const [pipelineDeployments, setPipelineDeployments] = useState(initialPipelineDeployments)
5757

0 commit comments

Comments
 (0)