Edited Time format logic

it was forcing using 'en' or 'id' time format
pull/1/head
Kim MinJae 2021-04-26 23:58:03 +09:00 committed by GitHub
parent 80d974cad9
commit a4ec0365f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 7 deletions

View File

@ -46,15 +46,9 @@
<img src={originalResin.image} alt={originalResin.label} class="h-6 w-6 inline" /></td <img src={originalResin.image} alt={originalResin.label} class="h-6 w-6 inline" /></td
> >
<td class="pr-2 text-white text-center"> <td class="pr-2 text-white text-center">
{#if $t('calculator.resin.timeFormat') === 'en'}
{dayjs(new Date(stepTime[i + 1])) {dayjs(new Date(stepTime[i + 1]))
.locale('en') .locale($t('calculator.resin.timeFormat'))
.fromNow()} .fromNow()}
{:else}
{dayjs(new Date(stepTime[i + 1]))
.locale('id')
.fromNow()}
{/if}
</td> </td>
</tr> </tr>
{/each} {/each}