1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

Merge pull request #1254 from Budibase/bug/relationship-cardinality

Relationship cardinality fix
This commit is contained in:
Michael Drury 2021-03-05 15:41:08 +00:00 committed by GitHub
commit 07e888fc10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -162,15 +162,15 @@
linkName = truncate(linkTable.name, { length: 15 })
return [
{
name: `Many ${thisName} rows has many ${linkName} rows`,
name: `Many ${thisName} rows many ${linkName} rows`,
value: RelationshipTypes.MANY_TO_MANY,
},
{
name: `One ${thisName} row has many ${linkName} rows`,
name: `One ${linkName} row → many ${thisName} rows`,
value: RelationshipTypes.ONE_TO_MANY,
},
{
name: `Many ${thisName} rows has one ${linkName} row`,
name: `One ${thisName} row → many ${linkName} rows`,
value: RelationshipTypes.MANY_TO_ONE,
},
]
@ -270,9 +270,9 @@
{value}
bind:group={field.relationshipType}>
<div class="radio-button-labels">
<label for={value}>{name.split('has')[0]}</label>
<label class="rel-type-center" for={value}>has</label>
<label for={value}>{name.split('has')[1]}</label>
<label for={value}>{name.split('')[0]}</label>
<label class="rel-type-center" for={value}></label>
<label for={value}>{name.split('')[1]}</label>
</div>
</Radio>
{/each}