Complete date now showing in commands

This commit is contained in:
bourquecharles
2021-05-27 18:15:38 -04:00
parent 12a17a3648
commit 92c1551b57

View File

@@ -265,7 +265,7 @@ const DeviceCommands = ({ selectedDeviceId }) => {
scopedSlots={{
completed: (item) => (
<td>
{item.completed && item.completed === 0
{item.completed && item.completed !== 0
? prettyDate(item.completed)
: 'Pending'}
</td>