feat: icon and color(created/updated time)

This commit is contained in:
Pranav C
2024-01-04 13:19:19 +00:00
parent 6105f747c0
commit fed12471c7
2 changed files with 3 additions and 5 deletions

View File

@@ -62,6 +62,9 @@ const renderIcon = (column: ColumnType, relationColumn?: ColumnType) => {
return { icon: iconMap.rollup, color: 'text-grey' }
case UITypes.Count:
return { icon: CountIcon, color: 'text-grey' }
case UITypes.CreateTime:
case UITypes.LastModifiedTime:
return { icon: iconMap.datetime, color: 'text-grey' }
}
return { icon: iconMap.generic, color: 'text-grey' }