fixing error message when passwords do not match / fixing placeholder image

This commit is contained in:
orangecoding
2026-05-02 20:00:11 +02:00
parent d7ee4f6909
commit 3de82dfa41
7 changed files with 15 additions and 14 deletions

View File

@@ -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',