1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-17 18:32:35 +00:00

Merge branch '208-page-refreshes-if-enter-key-is-pressed-inside-text-field-input' into 'develop'

Resolve "Page refreshes if enter key is pressed inside text field input"

Closes 

See merge request 
This commit is contained in:
Bram Wiepjes 2020-12-03 20:46:18 +00:00
commit 0786239d5a
2 changed files with 25 additions and 25 deletions
changelog.md
web-frontend/modules/database/components/row

View file

@ -1,5 +1,7 @@
# Changelog
* Fixed bug where the page refreshes if you press enter in an input in the row modal.
## Released (2020-12-01)
* Added select_for_update where it was still missing.

View file

@ -3,7 +3,6 @@
<h2 v-if="primary !== undefined" class="box__title">
{{ getHeading(primary, row) }}
</h2>
<form>
<RowEditModalField
v-for="field in getFields(fields, primary)"
:ref="'field-' + field.id"
@ -28,7 +27,6 @@
:table="table"
></CreateFieldContext>
</div>
</form>
</Modal>
</template>