#7281 solve terminal warnings #376

Merged
jorgep merged 6 commits from 7281-solveTerminalWarnings into dev 2024-05-16 07:19:16 +00:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit 1654fb93d4 - Show all commits

View File

@ -202,9 +202,9 @@ const toCustomerAddressEdit = (addressId) => {
<div v-if="item.observations.length">
<div
:key="obsIndex"

Se ha usado esta variable antes.sale warning.

Se ha usado esta variable antes.sale warning.
:key="obIndex"
jorgep marked this conversation as resolved Outdated

se puede cambiar a ob?

se puede cambiar a ob?

Propuesta, dejar la key como obIndex

Propuesta, dejar la key como obIndex
class="flex q-mb-sm"
v-for="(observation, obsIndex) in item.observations"
v-for="(observation, obIndex) in item.observations"
>
<div class="text-weight-bold q-mr-sm">
{{ observation.observationType.description }}:

View File

@ -2,7 +2,6 @@
import { computed, ref } from 'vue';
import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n';
import { useStateStore } from 'stores/useStateStore';
import { dashIfEmpty, toCurrency, toDateHourMinSec } from 'src/filters';
import VnLv from 'components/ui/VnLv.vue';
import CardSummary from 'components/ui/CardSummary.vue';
@ -11,7 +10,6 @@ import FetchedTags from 'components/ui/FetchedTags.vue';
const { t } = useI18n();
const route = useRoute();
const stateStore = useStateStore();
const $props = defineProps({
id: {