Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfred-Mutai committed Mar 24, 2024
1 parent 69e9cf5 commit 5750f02
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: any;
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 = 'Feb 15, 2024, 6:38:55 PM'; // new Date(VERSION.buildDate);
} catch (e) {}
}
}

0 comments on commit 5750f02

Please sign in to comment.