-
-
- {{ t('Go to Salix') }}
-
-
-
-
-en:
- Go to Salix: Go to Salix
-es:
- Go to Salix: Ir a Salix
-
diff --git a/src/components/VnTable/VnTable.vue b/src/components/VnTable/VnTable.vue
index e78efa852..f09bed8ba 100644
--- a/src/components/VnTable/VnTable.vue
+++ b/src/components/VnTable/VnTable.vue
@@ -150,6 +150,7 @@ const tableModes = [
disable: $props.disableOption?.card,
},
];
+
onBeforeMount(() => {
const urlParams = route.query[$props.searchUrl];
hasParams.value = urlParams && Object.keys(urlParams).length !== 0;
@@ -481,7 +482,7 @@ function handleSelection({ evt, added, rows: selectedRows }, rows) {
:class="col.headerClass"
>
@@ -523,7 +524,7 @@ function handleSelection({ evt, added, rows: selectedRows }, rows) {
-
+
{
rightPanel.value = document.querySelector('#right-panel');
if (!rightPanel.value) return;
- // Check if there's content to display
const observer = new MutationObserver(() => {
hasContent.value = rightPanel.value.childNodes.length;
});
@@ -21,12 +24,9 @@ onMounted(() => {
childList: true,
attributes: true,
});
-
- if (!slots['right-panel'] && !hasContent.value) stateStore.rightDrawer = false;
+ if ((!slots['right-panel'] && !hasContent.value) || quasar.platform.is.mobile)
+ stateStore.rightDrawer = false;
});
-
-const { t } = useI18n();
-const stateStore = useStateStore();
@@ -45,7 +45,7 @@ const stateStore = useStateStore();
-
+
diff --git a/src/components/common/VnInputDate.vue b/src/components/common/VnInputDate.vue
index eb9dc0f38..fdef6a9a8 100644
--- a/src/components/common/VnInputDate.vue
+++ b/src/components/common/VnInputDate.vue
@@ -106,7 +106,7 @@ const manageDate = (date) => {
:class="{ required: isRequired }"
:rules="mixinRules"
:clearable="false"
- @click="isPopupOpen = true"
+ @click="isPopupOpen = !isPopupOpen"
hide-bottom-space
>
@@ -125,13 +125,6 @@ const manageDate = (date) => {
isPopupOpen = false;
"
/>
-
{