1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-23 00:19:40 +00:00

Resolve "Refactor: replace the view id from the store with a prop"

This commit is contained in:
Davide Silvestri 2024-01-12 11:44:09 +00:00
parent bf7f568bd8
commit a2078d0c7a
19 changed files with 67 additions and 1 deletions
web-frontend/modules/database/components/row

View file

@ -12,6 +12,7 @@
:hidden="false"
:read-only="false"
:row="row"
:view="view"
:table="table"
:database="database"
:can-modify-fields="canModifyFields"
@ -36,6 +37,7 @@
:read-only="false"
:row="row"
:table="table"
:view="view"
:database="database"
:can-modify-fields="canModifyFields"
@field-updated="$emit('field-updated', $event)"
@ -84,6 +86,11 @@ export default {
type: Object,
required: true,
},
view: {
type: [Object, null],
required: false,
default: null,
},
primaryIsSortable: {
type: Boolean,
required: false,