mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 07:07:11 +00:00
fix(gui): map correct rollup icon
Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
@@ -52,13 +52,13 @@ const renderIcon = (column: ColumnType, relationColumn?: ColumnType) => {
|
||||
case UITypes.Rollup:
|
||||
switch ((relationColumn?.colOptions as LinkToAnotherRecordType)?.type) {
|
||||
case RelationTypes.MANY_TO_MANY:
|
||||
return { icon: iconMap, color: 'text-accent' }
|
||||
return { icon: iconMap.rollup, color: 'text-accent' }
|
||||
case RelationTypes.HAS_MANY:
|
||||
return { icon: iconMap, color: 'text-yellow-500' }
|
||||
return { icon: iconMap.rollup, color: 'text-yellow-500' }
|
||||
case RelationTypes.BELONGS_TO:
|
||||
return { icon: iconMap, color: 'text-sky-500' }
|
||||
return { icon: iconMap.rollup, color: 'text-sky-500' }
|
||||
}
|
||||
return { icon: iconMap, color: 'text-grey' }
|
||||
return { icon: iconMap.rollup, color: 'text-grey' }
|
||||
case UITypes.Count:
|
||||
return { icon: CountIcon, color: 'text-grey' }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user