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 #1085 See merge request bramw/baserow!884
This commit is contained in:
commit
c7b3cfb1c1
2 changed files with 17 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue