cursor updates

This commit is contained in:
Bill Richardson 2026-01-14 14:07:40 -05:00
parent 6a2bc71ea0
commit cb0ef2b627

View file

@ -18,6 +18,7 @@
<div class="header-cell header-start">
<button
v-if="activePageIndex !== 0"
type="button"
class="span-block-flex"
@click="gotoPreviousPage()">
<img
@ -32,6 +33,7 @@
</div>
<div class="header-cell header-end">
<button
type="button"
class="span-block-flex"
@click="gotoNextPage()">
More
@ -297,7 +299,7 @@ export default {
},
unmounted() {
if (this.mql) {
this.mql.removeEventListener('change', () => {});
this.mql.removeEventListener('change', this.handleMqlChange);
}
},
methods: {
@ -472,7 +474,7 @@ export default {
}
this.activePageIndex += 1;
this.selectedDate = null;
this.selectedTIme = null;
this.selectedTime = null;
this.selectedTimeSlot = null;
this.findFirstAvailableDateInView();
},