This commit is contained in:
@@ -177,7 +177,7 @@ export default {
|
||||
///////////////////////////////////////////
|
||||
// Turn a duration value into a display
|
||||
//
|
||||
durationLocalized(value) {
|
||||
durationLocalized(value, hideSeconds) {
|
||||
let theDays = 0;
|
||||
let theHours = 0;
|
||||
let theMinutes = 0;
|
||||
@@ -219,7 +219,7 @@ export default {
|
||||
window.$gz.translation.get("TimeSpanMinutes") +
|
||||
" ";
|
||||
}
|
||||
if (theSeconds != 0) {
|
||||
if (!hideSeconds && theSeconds != 0) {
|
||||
ret +=
|
||||
theSeconds +
|
||||
" " +
|
||||
|
||||
Reference in New Issue
Block a user