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