mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-05 17:30:11 +00:00
Resolve "Fix StopIteration error"
This commit is contained in:
parent
1a61cb12ed
commit
d7cb11d363
12 changed files with 154 additions and 6 deletions
web-frontend/modules/database/components/field
|
@ -29,6 +29,7 @@
|
|||
:icon="fieldType.iconClass"
|
||||
:name="fieldType.name"
|
||||
:value="fieldType.type"
|
||||
:disabled="primary && !fieldType.canBePrimaryField"
|
||||
></DropdownItem>
|
||||
</Dropdown>
|
||||
<div v-if="$v.values.type.$error" class="error">
|
||||
|
@ -62,6 +63,11 @@ export default {
|
|||
type: Object,
|
||||
required: true,
|
||||
},
|
||||
primary: {
|
||||
type: Boolean,
|
||||
required: false,
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue