@webitel/ui-sdk 25.4.38 → 25.4.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -108,7 +108,12 @@ export default {
|
|
|
108
108
|
return this.user.preferredUsername || this.user.account;
|
|
109
109
|
},
|
|
110
110
|
buildVersion() {
|
|
111
|
-
|
|
111
|
+
let buildString = '';
|
|
112
|
+
buildString = `${this.$t('webitelUI.headerActions.buildVersion')}: v${this.buildInfo.release}-${this.buildInfo.build}`;
|
|
113
|
+
if (this.buildInfo.timestamp) {
|
|
114
|
+
buildString += `, ${new Date(this.buildInfo.timestamp).toLocaleString()}`;
|
|
115
|
+
}
|
|
116
|
+
return buildString;
|
|
112
117
|
},
|
|
113
118
|
},
|
|
114
119
|
|