Skip to content

Commit

Permalink
Fixed /ops/status build date
Browse files Browse the repository at this point in the history
  • Loading branch information
nvoxland committed May 4, 2021
1 parent 70fdb35 commit 464c2a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ops-dashboard/src/app/services/status.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class StatusService {
})
} else {
this.http.get<StatusModel>("/ops/api/status").subscribe((data: StatusModel) => {
data.buildDate = new Date(data.buildTime * 100);
data.buildDate = new Date(data.buildTime * 1000);
this.knowStatus = true;
this.status.next(data);
})
Expand Down

0 comments on commit 464c2a3

Please sign in to comment.