Lint
This commit is contained in:
parent
d0197730d5
commit
108728ee15
|
@ -346,14 +346,15 @@
|
|||
}
|
||||
|
||||
function getRelationshipOptions(field) {
|
||||
switch (field.type) {
|
||||
case FieldType.LINK:
|
||||
if (!field || !field.tableId) {
|
||||
if (!field) {
|
||||
return null
|
||||
}
|
||||
const linkTable = tableOptions?.find(
|
||||
table => table._id === field.tableId
|
||||
)
|
||||
|
||||
if (field.type === FieldType.LINK) {
|
||||
if (!field.tableId) {
|
||||
return null
|
||||
}
|
||||
const linkTable = tableOptions?.find(table => table._id === field.tableId)
|
||||
if (!linkTable) {
|
||||
return null
|
||||
}
|
||||
|
@ -376,7 +377,7 @@
|
|||
value: RelationshipType.MANY_TO_ONE,
|
||||
},
|
||||
]
|
||||
case BB_USER_REFERENCE_TYPE:
|
||||
} else if (field.type === BB_USER_REFERENCE_TYPE) {
|
||||
return [
|
||||
{
|
||||
name: `Single user`,
|
||||
|
@ -389,7 +390,7 @@
|
|||
value: RelationshipType.MANY_TO_ONE,
|
||||
},
|
||||
]
|
||||
default:
|
||||
} else {
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue