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.
2 parents da1f118 + eb77777 commit 9c91e18Copy full SHA for 9c91e18
resources/jscomposition/cases/casesDetail/config/columns.js
@@ -57,7 +57,9 @@ const assignedColumn = () => ({
57
click: (row, column, columns) => {
58
window.document.location = `/profile/${row.user?.id}`;
59
},
60
- formatter: (row, column, columns) => row.user?.fullname,
+ formatter: (row, column, columns) => {
61
+ return row.user ? row.user.fullname : 'Self Service';
62
+ },
63
initials: (row, column, columns) => row.user?.fullname[0],
64
src: (row, column, columns) => row.user?.avatar,
65
0 commit comments