BetaBlox / nestjs-react-template

A starter template for a full stack nestjs/react monorepo
0 stars 0 forks source link

Limit or truncate long-text in admin collection view #117

Open johnrake-betablox opened 2 months ago

johnrake-betablox commented 2 months ago
image
johnrake-betablox commented 2 months ago
<td
                  key={attribute}
                  className={cn('px-6 py-4 text-gray-900', {
                    'whitespace-nowrap': !isTextAttribute(attribute),
                    'w-[400px]': isTextAttribute(attribute),
                  })}
                >
                  {renderFieldInCollectionView(record, modelName, attribute)}
                </td>