From c7cf3b424a72c233dadc65cf375eaf95b4f55273 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 27 Nov 2024 20:31:51 +0100 Subject: [PATCH] ui: version info: replace hyphen separator with dot Our package uses ..- as version format, here we get version=. and release=, so we rendered the version like .-, which is rather wrong. And while the return value of the API call might be a bit odd and should probably change (or at least add a full version property), but for now it's what it is, so at least render it correctly. Signed-off-by: Thomas Lamprecht --- www/VersionInfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/VersionInfo.js b/www/VersionInfo.js index 7ab3e129..2da23b1f 100644 --- a/www/VersionInfo.js +++ b/www/VersionInfo.js @@ -16,7 +16,7 @@ Ext.define('PBS.view.main.VersionInfo', { tpl: [ 'Backup Server', '', - ' {version}-{release}', + ' {version}.{release}', '', ],