Skip to content

Commit 9c91e18

Browse files
authored
Merge pull request #7970 from ProcessMaker/bugfix/FOUR-21669
FOUR-21669: Assigned field in case detail has an empty avatar in self service
2 parents da1f118 + eb77777 commit 9c91e18

File tree

1 file changed

+3
-1
lines changed
  • resources/jscomposition/cases/casesDetail/config

1 file changed

+3
-1
lines changed

resources/jscomposition/cases/casesDetail/config/columns.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ const assignedColumn = () => ({
5757
click: (row, column, columns) => {
5858
window.document.location = `/profile/${row.user?.id}`;
5959
},
60-
formatter: (row, column, columns) => row.user?.fullname,
60+
formatter: (row, column, columns) => {
61+
return row.user ? row.user.fullname : 'Self Service';
62+
},
6163
initials: (row, column, columns) => row.user?.fullname[0],
6264
src: (row, column, columns) => row.user?.avatar,
6365
},

0 commit comments

Comments
 (0)