mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-04 00:49:53 +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/row
|
@ -14,7 +14,7 @@
|
|||
<i class="fas fa-caret-down"></i>
|
||||
</a>
|
||||
</label>
|
||||
<FieldContext ref="context" :field="field"></FieldContext>
|
||||
<FieldContext ref="context" :table="table" :field="field"></FieldContext>
|
||||
<component
|
||||
:is="getFieldComponent(field.type)"
|
||||
ref="field"
|
||||
|
@ -32,6 +32,10 @@ export default {
|
|||
name: 'RowEditModalField',
|
||||
components: { FieldContext },
|
||||
props: {
|
||||
table: {
|
||||
type: Object,
|
||||
required: true,
|
||||
},
|
||||
field: {
|
||||
type: Object,
|
||||
required: true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue