summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/views/about.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/framework/src/views/about.tsx')
-rw-r--r--sdnr/wt/odlux/framework/src/views/about.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sdnr/wt/odlux/framework/src/views/about.tsx b/sdnr/wt/odlux/framework/src/views/about.tsx
index 174444f70..400ee35bb 100644
--- a/sdnr/wt/odlux/framework/src/views/about.tsx
+++ b/sdnr/wt/odlux/framework/src/views/about.tsx
@@ -46,7 +46,7 @@ type odluxVersion= {version:string,build:string, framework: string,
permanceHistoryApp: string
}};
-type topologyVersion = {version: string};
+type topologyVersion = {version: string, buildTimestamp: string};
class AboutComponent extends React.Component<any, AboutState> {
textarea: React.RefObject<HTMLTextAreaElement>;
@@ -91,7 +91,9 @@ class AboutComponent extends React.Component<any, AboutState> {
}
else
{
- return `| | |\n| --- | --- |\n| Version | ${data.version} |\n`
+ const topologyInfo = `| | |\n| --- | --- |\n| Version | ${data.version} |\n` +
+ `| Build timestamp | ${data.buildTimestamp} |\n`;
+ return topologyInfo;
}
}