fix: retain user field icon for system user fields

This commit is contained in:
mertmit
2024-01-06 08:47:50 +00:00
parent dccae16804
commit d8cd2ecfd5
3 changed files with 3 additions and 5 deletions

View File

@@ -67,7 +67,7 @@ const renderIcon = (column: ColumnType, relationColumn?: ColumnType) => {
return { icon: iconMap.datetime, color: 'text-grey' }
case UITypes.CreatedBy:
case UITypes.LastModifiedBy:
return { icon: iconMap.phUserGear, color: 'text-grey' }
return { icon: iconMap.phUser, color: 'text-grey' }
}
return { icon: iconMap.generic, color: 'text-grey' }