Browse Source

refactor: show proper field icon

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5193/head
Pranav C 2 years ago
parent
commit
adc48d68e3
  1. 4
      packages/nc-gui/components/smartsheet/header/CellIcon.ts

4
packages/nc-gui/components/smartsheet/header/CellIcon.ts

@ -60,6 +60,8 @@ import DurationIcon from '~icons/mdi/timer-outline'
const renderIcon = (column: ColumnType, abstractType: any) => {
if (isPrimaryKey(column)) {
return KeyIcon
} else if (isSpecificDBType(column)) {
return SpecificDBTypeIcon
} else if (isJSON(column)) {
return JSONIcon
} else if (isDate(column, abstractType)) {
@ -102,8 +104,6 @@ const renderIcon = (column: ColumnType, abstractType: any) => {
return NumericIcon
} else if (isString(column, abstractType)) {
return StringIcon
} else if (isSpecificDBType(column)) {
return SpecificDBTypeIcon
} else {
return GenericIcon
}

Loading…
Cancel
Save