7596-devToTest_2426 #452

Merged
alexm merged 378 commits from 7596-devToTest_2426 into test 2024-06-19 08:49:21 +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;