gui: Add detailed file versioning information to folder info (ref #963) (#8348)

This commit is contained in:
tomasz1986
2022-05-28 13:46:15 +02:00
committed by GitHub
parent 2ca8a5ac61
commit de2d7c33a3
3 changed files with 35 additions and 7 deletions
+5 -1
View File
@@ -21,7 +21,11 @@ angular.module('syncthing.core')
var t = (input / SECONDS_IN[k] | 0); // Math.floor
if (t > 0) {
result += " " + t + k;
if (!result) {
result = t + k;
} else {
result += " " + t + k;
}
}
if (precision == k) {