mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-29 23:09:56 +00:00
Resolve "Foreignkey field / connecting rows"
This commit is contained in:
parent
49753eef89
commit
fe31605fef
73 changed files with 3718 additions and 146 deletions
web-frontend/modules/database/components/field
|
@ -40,6 +40,7 @@
|
|||
<component
|
||||
:is="getFormComponent(values.type)"
|
||||
ref="childForm"
|
||||
:table="table"
|
||||
:default-values="defaultValues"
|
||||
/>
|
||||
</template>
|
||||
|
@ -56,6 +57,12 @@ import form from '@baserow/modules/core/mixins/form'
|
|||
export default {
|
||||
name: 'FieldForm',
|
||||
mixins: [form],
|
||||
props: {
|
||||
table: {
|
||||
type: Object,
|
||||
required: true,
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
allowedValues: ['name', 'type'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue