Hotfix: ZoneLocationsTree #995
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix-front#995
Loading…
Reference in New Issue
No description provided.
Delete Branch "Fix-ZoneLocationsTree2"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Show data when entering the section.
Fixed search button when excluding an event
@ -54,3 +59,2 @@
</span>
<h1 class="title">{{ title }}</h1>
<p>{{ subtitle }}</p>
<h1 class="title">{{ $props.title }}</h1>
Dentro del codigo de vue no hace falta poner $props
@ -64,6 +64,13 @@ const exclusionGeoCreate = async () => {
};
await axios.post('Zones/exclusionGeo', params);
await refetchEvents();
const params = {
Has duplicado el codigo
@ -86,6 +92,9 @@ const deleteEvent = async () => {
if (!props.event) return;
await axios.delete(`Zones/${route.params.id}/exclusions`);
await refetchEvents();
if (!props.event) return;
Has duplicado el codigo
@ -121,1 +131,3 @@
<VnInputDate :label="t('eventsInclusionForm.day')" v-model="dated" />
<VnInputDate
:label="t('eventsInclusionForm.day')"
v-model="dated"
No puede haber v-model y model-value a la vez.
Tampoco se puede usar un prop para un model.
Revisa en master pq arreglo un bug ocasinoado por esto
New commits pushed, approval review dismissed automatically according to repository settings