Change Zone Calendar name
This commit is contained in:
parent
3cb17eeb66
commit
dbcd701725
|
@ -3,7 +3,7 @@ import { computed, onMounted, ref, watch, onUnmounted } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
import ZoneEventsPanel from './ZoneEventsPanel.vue';
|
import ZoneEventsPanel from './ZoneEventsPanel.vue';
|
||||||
import ZoneDeliveryCalendar from '../ZoneDeliveryCalendar.vue';
|
import ZoneCalendar from '../ZoneCalendar.vue';
|
||||||
import ZoneEventInclusionForm from './ZoneEventInclusionForm.vue';
|
import ZoneEventInclusionForm from './ZoneEventInclusionForm.vue';
|
||||||
import ZoneEventExclusionForm from './ZoneEventExclusionForm.vue';
|
import ZoneEventExclusionForm from './ZoneEventExclusionForm.vue';
|
||||||
|
|
||||||
|
@ -253,7 +253,7 @@ onUnmounted(() => arrayData.destroy());
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="calendars-container">
|
<div class="calendars-container">
|
||||||
<ZoneDeliveryCalendar
|
<ZoneCalendar
|
||||||
v-for="(month, index) in months"
|
v-for="(month, index) in months"
|
||||||
:key="index"
|
:key="index"
|
||||||
:month="month.getMonth() + 1"
|
:month="month.getMonth() + 1"
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { computed, onMounted, ref, watch, onUnmounted } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
import ZoneDeliveryPanel from './ZoneDeliveryPanel.vue';
|
import ZoneDeliveryPanel from './ZoneDeliveryPanel.vue';
|
||||||
import ZoneDeliveryCalendar from './ZoneDeliveryCalendar.vue';
|
import ZoneCalendar from './ZoneCalendar.vue';
|
||||||
|
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
import { useWeekdayStore } from 'src/stores/useWeekdayStore';
|
import { useWeekdayStore } from 'src/stores/useWeekdayStore';
|
||||||
|
@ -222,7 +222,7 @@ onUnmounted(() => arrayData.destroy());
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="calendars-container">
|
<div class="calendars-container">
|
||||||
<ZoneDeliveryCalendar
|
<ZoneCalendar
|
||||||
v-for="(month, index) in months"
|
v-for="(month, index) in months"
|
||||||
:key="index"
|
:key="index"
|
||||||
:month="month.getMonth() + 1"
|
:month="month.getMonth() + 1"
|
||||||
|
|
Loading…
Reference in New Issue