Oops, forgot I removed this

This commit is contained in:
Focusvity 2022-06-23 21:51:48 +10:00
parent 84677b8d81
commit cad6999d90
No known key found for this signature in database
GPG Key ID: 85AD157561ABE94B
1 changed files with 1 additions and 0 deletions

View File

@ -42,6 +42,7 @@ export function getBuilds(version: string): Promise<Build[]> {
builds = value.data.builds as Build[]
for (let build of builds) {
axios.get(`${JENKINS_URL}/${ARTIFACT_NAME}/job/${version}/${build.number}/api/json?pretty=true`).then(value1 => {
build.timestamp = value1.data.timestamp
let changeSet: any[] = value1.data.changeSets
if (changeSet.length > 0) {
let changes = changeSet[0].items as BuildChange[]