mirror of
https://github.com/misenhower/splatoon2.ink.git
synced 2026-08-22 02:14:21 -05:00
Fix a bug with the short time format
This commit is contained in:
@@ -51,7 +51,7 @@ Vue.filter('duration', function(value, hideSeconds = false) {
|
||||
|
||||
// Format for translation
|
||||
days = days && $t('time.daysShort', { days }, parseInt(days));
|
||||
hours = hours && $t('time.hoursShort', { hours }, parseInt(hours));
|
||||
hours = (days || hours) && $t('time.hoursShort', { hours }, parseInt(hours));
|
||||
minutes = $t('time.minutesShort', { minutes }, parseInt(minutes));
|
||||
seconds = $t('time.secondsShort', { seconds }, parseInt(seconds));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user