perf: remove comments
gitea/salix-front/pipeline/pr-test There was a failure building this commit Details

This commit is contained in:
Javier Segarra 2025-02-23 14:08:28 +01:00
parent 2725571ee1
commit 7daa97999b
2 changed files with 3 additions and 6 deletions

View File

@ -1,8 +1,7 @@
<script setup>
import { ref, computed, provide } from 'vue';
import { ref, computed } from 'vue';
import { useI18n } from 'vue-i18n';
import { useRoute } from 'vue-router';
import { toDateString } from 'src/filters';
import FetchData from 'components/FetchData.vue';
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';

View File

@ -59,6 +59,8 @@ const companiesOptions = ref([]);
const accountingOptions = ref([]);
const amountToReturn = ref();
const dataKey = 'TicketList';
const filterPanelRef = ref(null);
const formInitialData = ref({});
const columns = computed(() => [
{
@ -189,8 +191,6 @@ const columns = computed(() => [
attrs: {
url: 'warehouses',
fields: ['id', 'name'],
optionLabel: 'name',
optionValue: 'id',
},
format: (row) => row.warehouse,
columnField: {
@ -438,7 +438,6 @@ function setReference(data) {
dialogData.value.value.description = newDescription;
}
const formInitialData = ref({});
watch(
() => route.query.table,
(newValue) => {
@ -454,7 +453,6 @@ watch(
},
{ immediate: true },
);
const filterPanelRef = ref(null);
</script>
<template>