1
0
Fork 0
mirror of synced 2024-09-30 09:07:25 +13:00

Fix type editing attachments

This commit is contained in:
Adria Navarro 2024-04-26 15:55:08 +02:00
parent 16ea4195df
commit a6d96cec4d

View file

@ -365,13 +365,11 @@
function getAllowedTypes() { function getAllowedTypes() {
if (originalName) { if (originalName) {
const possibleTypes = ( const possibleTypes = SWITCHABLE_TYPES[field.type] || [
SWITCHABLE_TYPES[field.type] || [editableColumn.type] editableColumn.type,
).map(t => t.toLowerCase()) ]
return Object.entries(FIELDS) return Object.entries(FIELDS)
.filter(([fieldType]) => .filter(([_, field]) => possibleTypes.includes(field.type))
possibleTypes.includes(fieldType.toLowerCase())
)
.map(([_, fieldDefinition]) => fieldDefinition) .map(([_, fieldDefinition]) => fieldDefinition)
} }