We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98ffb30 commit 9acc853Copy full SHA for 9acc853
src/components/utils/renderers/user-cell-renderer.tsx
@@ -7,7 +7,8 @@
7
import { Avatar, Box, Theme, Tooltip } from '@mui/material';
8
9
function getAbbreviationFromUserName(name: string) {
10
- if (name === null || name.trim() === '') {
+ // notice : == null means null or undefined
11
+ if (name == null || name.trim() === '') {
12
return '';
13
}
14
const splittedName = name.split(' ');
0 commit comments