mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-08-31 08:09:29 +00:00
Merge c9a38a81ee into a62c2a6dc3
This commit is contained in:
commit
6fd72ff192
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ export default function Table({
|
|||
id: "avatar",
|
||||
cell: (info: any) => {
|
||||
const value = info.getValue();
|
||||
return <GravatarFormatter url={value.avatar} name={value.name} />;
|
||||
return <GravatarFormatter url={value ? value.avatar : ""} name={value ? value.name : ""} />;
|
||||
},
|
||||
meta: {
|
||||
className: "w-1",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue