Browse Source

fix(nc-gui): allow decimal field to be used as display value field

pull/9986/head
Ramesh Mane 2 days ago
parent
commit
76cba0e030
  1. 1
      packages/nocodb-sdk/src/lib/UITypes.ts

1
packages/nocodb-sdk/src/lib/UITypes.ts

@ -378,6 +378,7 @@ export const isSupportedDisplayValueColumn = (column: Partial<ColumnType>) => {
case UITypes.Currency:
case UITypes.Percent:
case UITypes.Duration:
case UITypes.Decimal:
case UITypes.Formula: {
return true;
}

Loading…
Cancel
Save