diff --git a/package.json b/package.json
index 0a66ddb4f..0590a1526 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "salix-front",
- "version": "24.32.0",
+ "version": "24.34.0",
"description": "Salix frontend",
"productName": "Salix",
"author": "Verdnatura",
diff --git a/src/boot/qformMixin.js b/src/boot/qformMixin.js
index 0bf1f9795..fc7852369 100644
--- a/src/boot/qformMixin.js
+++ b/src/boot/qformMixin.js
@@ -1,28 +1,11 @@
import { getCurrentInstance } from 'vue';
-const filterAvailableInput = (element) => {
- return element.classList.contains('q-field__native') && !element.disabled;
-};
-const filterAvailableText = (element) => {
- return (
- element.__vueParentComponent.type.name === 'QInput' &&
- element.__vueParentComponent?.attrs?.class !== 'vn-input-date'
- );
-};
-
export default {
mounted: function () {
const vm = getCurrentInstance();
if (vm.type.name === 'QForm') {
if (!['searchbarForm', 'filterPanelForm'].includes(this.$el?.id)) {
- // AUTOFOCUS
- const elementsArray = Array.from(this.$el.elements);
- const availableInputs = elementsArray.filter(filterAvailableInput);
- const firstInputElement = availableInputs.find(filterAvailableText);
-
- if (firstInputElement) {
- firstInputElement.focus();
- }
+ // TODO: AUTOFOCUS IS NOT FOCUSING
const that = this;
this.$el.addEventListener('keyup', function (evt) {
if (evt.key === 'Enter') {
diff --git a/src/components/CrudModel.vue b/src/components/CrudModel.vue
index 74c4a9bc0..33c831e3f 100644
--- a/src/components/CrudModel.vue
+++ b/src/components/CrudModel.vue
@@ -1,7 +1,7 @@
-