mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
fixing error message when passwords do not match / fixing placeholder image
This commit is contained in:
@@ -47,7 +47,7 @@ export default function UserTable({ user = [], onUserRemoval, onUserEdit } = {})
|
||||
{
|
||||
title: 'Last login',
|
||||
dataIndex: 'lastLogin',
|
||||
render: (value) => format(value),
|
||||
render: (value) => (value == null ? '---' : format(value)),
|
||||
},
|
||||
{
|
||||
title: 'Jobs',
|
||||
|
||||
Reference in New Issue
Block a user