We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6afb666 commit 4a73398Copy full SHA for 4a73398
quick-start/src/main/ui/app/deploy/deploy.service.ts
@@ -50,7 +50,7 @@ export class DeployService {
50
this.errors = status.errors;
51
} else if (message.headers.destination === '/topic/deploy-status') {
52
let status: any = JSON.parse(message.body);
53
- this._lastDeployed = (resp.deployed) ? moment(resp.lastModified) : null;
+ this._lastDeployed = (status.deployed) ? moment(status.lastModified) : null;
54
this.onDeploy.emit(status);
55
}
56
0 commit comments