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