Fixing an issue discovered where the relationshipType currently specifies the wrong cardinality, for now just flipping the way it is specified in the front end as this will accurately describe what the backend is performing.
This commit is contained in:
parent
7f38415967
commit
9609c59368
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue