1
0
Fork 0
mirror of synced 2024-07-02 13:01:09 +12:00

change wording and remove console log

This commit is contained in:
Keviin Åberg Kultalahti 2021-02-16 12:50:12 +01:00
parent 7f95ae7b49
commit 11ee6e8b15
2 changed files with 11 additions and 5 deletions

View file

@ -234,9 +234,8 @@ export const getBackendUiStore = () => {
return state
})
},
saveField: ({ originalName, field, primaryDisplay = false, indexes, relationshipType = 'many-to-many' }) => {
saveField: ({ originalName, field, primaryDisplay = false, indexes, relationshipType }) => {
store.update(state => {
console.log(state)
// delete the original if renaming
// need to handle if the column had no name, empty string
if (originalName || originalName === "") {
@ -251,7 +250,8 @@ export const getBackendUiStore = () => {
if (primaryDisplay) {
state.draftTable.primaryDisplay = field.name
}
// Set one-to-many
// Set relationship type
if (field.type === 'link') {
state.draftTable.relationshipType = relationshipType
}

View file

@ -60,7 +60,7 @@
originalName,
field,
primaryDisplay,
relationshipType: relationshipTypes.find(type => type.value === selectedRelationshipType),
relationshipType: relationshipTypes.find(type => type.text === selectedRelationshipType).value,
indexes,
})
return state
@ -200,7 +200,9 @@
<Label grey extraSmall>Select relationship type</Label>
<div class="radio-buttons">
{#each types as type}
<Radio name="Relationship type" value={type} bind:group={selectedRelationshipType} label={type} showLabel/>
<Radio name="Relationship type" value={type} bind:group={selectedRelationshipType}>
<label for={type}>{type}</label>
</Radio>
{/each}
</div>
</div>
@ -232,6 +234,10 @@
title="Confirm Deletion" />
<style>
label {
display: grid;
place-items: center;
}
.radio-buttons {
display: flex;
gap: var(--spacing-m);