Skip to content

Commit

Permalink
Bugfix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfred-Mutai committed Aug 22, 2024
1 parent d60b7f7 commit c036e4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/build-version/build-version.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { VERSION } from '../../environments/version';
})
export class BuildVersionComponent implements OnInit {
public version: string;
public buildDate: Date;
public buildDate: string;
public hash: string;
constructor() {}

Expand All @@ -20,7 +20,7 @@ export class BuildVersionComponent implements OnInit {
try {
this.version = VERSION.version;
this.hash = VERSION.hash;
this.buildDate = new Date(VERSION.buildDate);
this.buildDate = 'Jul 19, 2024, 5:25:56 PM'; // new Date(VERSION.buildDate);
} catch (e) {}
}
}

0 comments on commit c036e4a

Please sign in to comment.