Skip to content

Commit

Permalink
fix(web): display last deployment logs instead of first one (#13711)
Browse files Browse the repository at this point in the history
ref: MANAGER-15749

Signed-off-by: Jacques Larique <[email protected]>
  • Loading branch information
JacquesLarique authored Oct 22, 2024
1 parent 88dfeea commit 88d7ad7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ export default class HostingMultisiteGitViewLastDeploymentController {
this.serviceName,
this.websiteId,
)
.then(([deploymentId]) => {
.then((deploymentIds) => {
return this.HostingMultisiteGitViewLastDeploymentService.getWebsitesDeploymentLogs(
this.serviceName,
this.websiteId,
deploymentId,
deploymentIds.pop(),
);
})
.then((logs) => {
Expand Down

0 comments on commit 88d7ad7

Please sign in to comment.