#6911 save on enter #207

Merged
jsegarra merged 50 commits from 6911-saveOnEnter into dev 2024-06-07 07:20:48 +00:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit 58dc4c253a - Show all commits

View File

@ -1,4 +1,5 @@
import { QTable, QForm } from 'quasar';
import { QForm } from 'quasar';
import { getCurrentInstance } from 'vue';
export default {
inject: { QForm },
@ -6,7 +7,8 @@ export default {
components: { QForm },
extends: { QForm },
mounted: function () {
if (this.$el?.classList?.contains('q-form'))
const vm = getCurrentInstance();
if (vm.type.name === 'QForm')
if (this.$el?.id !== 'searchbarForm') {
let that = this;