Skip to content

Commit

Permalink
fix: revert secret list change
Browse files Browse the repository at this point in the history
  • Loading branch information
Justineo committed Nov 12, 2024
1 parent be7d9af commit b94d828
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
<b>{{ rowValue ?? '-' }}</b>
</div>
</template>
<template #updated_at="{ row, rowValue }">
{{ formatUnixTimeStamp(rowValue ?? row.created_at) }}
<template #updated_at="{ rowValue }">
<span>{{ rowValue ? formatUnixTimeStamp(new Date(rowValue).getTime() / 1000) : '-' }}</span>
</template>

<!-- Row actions -->
Expand Down

0 comments on commit b94d828

Please sign in to comment.