Do not show minutes if days is available

Also show seconds only when seconds is 0
This commit is contained in:
Alfredo Sumaran 2016-11-17 17:31:42 -05:00
parent 1054fb965c
commit f78935ead7

View file

@ -9,8 +9,8 @@
<span class="total-time">
<template v-if="time.days">{{ time.days }} <span>{{ time.days === 1 ? 'day' : 'days' }}</span></template>
<template v-if="time.hours">{{ time.hours }} <span>hr</span></template>
<template v-if="time.mins">{{ time.mins }} <span>mins</span></template>
<template v-if="time.seconds && Object.keys(time).length === 1">{{ time.seconds }} <span>s</span></template>
<template v-if="time.mins && !time.days">{{ time.mins }} <span>mins</span></template>
<template v-if="time.seconds && Object.keys(time).length === 1 || time.seconds === 0">{{ time.seconds }} <span>s</span></template>
</span>
`,
});