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

Merge branch '1085-backspace-and-delete-keys-stop-working-after-selecting-specific-types-of-cells' into 'develop'

Resolve "Backspace and Delete keys stop working after selecting specific types of cells"

Closes 

See merge request 
This commit is contained in:
Nigel Gott 2022-07-26 13:05:16 +00:00
commit c7b3cfb1c1
2 changed files with 17 additions and 2 deletions
changelog.md
web-frontend/modules/database/components/view/grid/fields

View file

@ -60,6 +60,7 @@ For example:
* Ensure the latest error is always shown when clicking the formula refresh options link. [#1092](https://gitlab.com/bramw/baserow/-/issues/1092)
* Fixed duplicating view with that depends on select options mapping. [#1104](https://gitlab.com/bramw/baserow/-/issues/1104)
* Don't allow invalid aggregate formulas from being created causing errors when inserting rows. [#1089](https://gitlab.com/bramw/baserow/-/issues/1089)
* Fix backspace and delete keys breaking after selecting a formula text cell. [#1085](https://gitlab.com/bramw/baserow/-/issues/1085)
### Breaking Changes

View file

@ -11,11 +11,25 @@
</template>
<script>
import gridField from '@baserow/modules/database/mixins/gridField'
import baseField from '@baserow/modules/database/mixins/baseField'
export default {
name: 'GridViewFieldFormula',
mixins: [gridField],
mixins: [baseField],
props: {
selected: {
type: Boolean,
required: true,
},
readOnly: {
type: Boolean,
required: true,
},
storePrefix: {
type: String,
required: true,
},
},
methods: {
getComponent(field) {
const formulaType = this.$registry.get('formula_type', field.formula_type)