Skip to content

Commit 6fd2da1

Browse files
committed
fixbug
1 parent a0415ad commit 6fd2da1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routes/apps.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ router.get('/:appName/deployments/:deploymentName/history',
171171
return deployments.getDeploymentHistory(deploymentInfo.id);
172172
})
173173
.then((rs) => {
174-
res.send({history: rs});
174+
res.send({history: _.pullAll(rs, [null, false])});
175175
})
176176
.catch((e) => {
177177
if (e instanceof AppError.AppError) {

0 commit comments

Comments
 (0)