Skip to content

Commit fc6e0e7

Browse files
committed
Format change for version
1 parent af83f09 commit fc6e0e7

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/components/AppBar/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ export function AppBar() {
2222
const minutes: string = (date.getMinutes()).toString().padStart(2, "0");
2323
const seconds: string = (date.getSeconds()).toString().padStart(2, "0");
2424

25-
return `v${year}.${month}.${day}.${hours}${minutes}${seconds}`;
25+
const dfVer = `v${year}.${month}.${day}.${hours}${minutes}${seconds}`;
26+
const tsVer = `v${timestamp}`;
27+
28+
return `${dfVer} (${tsVer})`;
2629
};
2730

2831
const versionMessage = Object.entries(version).map(

0 commit comments

Comments
 (0)