Showing
1 changed file
with
5 additions
and
1 deletions
@@ -421,7 +421,11 @@ | @@ -421,7 +421,11 @@ | ||
421 | </Tooltip> | 421 | </Tooltip> |
422 | </div> | 422 | </div> |
423 | <div class="text-dark-800 text-xs"> | 423 | <div class="text-dark-800 text-xs"> |
424 | - {{ item.time ? formatToDateTime(item.time, 'YYYY-MM-DD HH:mm:ss') : '--' }} | 424 | + {{ |
425 | + item.time && item?.rawValue | ||
426 | + ? formatToDateTime(item.time, 'YYYY-MM-DD HH:mm:ss') | ||
427 | + : '--' | ||
428 | + }} | ||
425 | </div> | 429 | </div> |
426 | </section> | 430 | </section> |
427 | </Card> | 431 | </Card> |