perf: remove comments
This commit is contained in:
parent
aff783eb2e
commit
2725571ee1
|
@ -26,8 +26,6 @@ const userParams = {
|
||||||
};
|
};
|
||||||
const filterPanelRef = ref(null);
|
const filterPanelRef = ref(null);
|
||||||
|
|
||||||
// Proveer específicamente el filterPanel
|
|
||||||
provide('filterPanel', filterPanelRef);
|
|
||||||
defineExpose({ filterPanelRef });
|
defineExpose({ filterPanelRef });
|
||||||
const provinces = ref([]);
|
const provinces = ref([]);
|
||||||
const states = ref([]);
|
const states = ref([]);
|
||||||
|
|
|
@ -46,7 +46,6 @@ to.setHours(23, 59, 0, 0);
|
||||||
to.setDate(to.getDate() + 1);
|
to.setDate(to.getDate() + 1);
|
||||||
|
|
||||||
onBeforeMount(() => {
|
onBeforeMount(() => {
|
||||||
// initializeFromQuery();
|
|
||||||
stateStore.rightDrawer = true;
|
stateStore.rightDrawer = true;
|
||||||
if (!route.query.createForm) return;
|
if (!route.query.createForm) return;
|
||||||
onClientSelected(JSON.parse(route.query.createForm));
|
onClientSelected(JSON.parse(route.query.createForm));
|
||||||
|
@ -476,7 +475,6 @@ const filterPanelRef = ref(null);
|
||||||
:array-data-props="{
|
:array-data-props="{
|
||||||
url: 'Tickets/filter',
|
url: 'Tickets/filter',
|
||||||
order: ['shippedDate DESC', 'shippedHour ASC', 'zoneLanding ASC', 'id'],
|
order: ['shippedDate DESC', 'shippedHour ASC', 'zoneLanding ASC', 'id'],
|
||||||
filterPanelOptions: true,
|
|
||||||
filterPanel: filterPanelRef,
|
filterPanel: filterPanelRef,
|
||||||
searchRemoveParams: true,
|
searchRemoveParams: true,
|
||||||
exprBuilder,
|
exprBuilder,
|
||||||
|
|
|
@ -396,3 +396,7 @@ Cypress.Commands.add('searchBtnFilterPanel', () => {
|
||||||
'.q-scrollarea__content > .q-btn--standard > .q-btn__content > .q-icon',
|
'.q-scrollarea__content > .q-btn--standard > .q-btn__content > .q-icon',
|
||||||
).click();
|
).click();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Cypress.Commands.add('waitRequest', (alias, cb) => {
|
||||||
|
cy.wait(alias).then(cb);
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in New Issue