Merge pull request #1924 from appwrite/fix-documents-table-column-min-width

Change column width min property on documents table
This commit is contained in:
Torsten Dittmann
2025-05-28 13:41:59 +02:00
committed by GitHub
@@ -103,7 +103,7 @@
type: attribute.type as ColumnType,
show: selected?.includes(attribute.key) ?? true,
array: attribute?.array,
width: 168,
width: { min: 168 },
format:
'format' in attribute && attribute?.format === 'enum' ? attribute.format : null,
elements: 'elements' in attribute ? attribute.elements : null