Skip to content

Commit

Permalink
chore(room-booking): remove 'Students Booking Service' prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSBulgakov committed Oct 16, 2024
1 parent 7a516e4 commit 42a71e2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/room-booking/BookingTimeline.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import type { MaybeRef } from "vue";
import { roomBookingFetch, type roomBookingTypes } from "@/api/room-booking";
import { useMediaQuery, useNow } from "@vueuse/core";
import type { MaybeRef } from "vue";
import { computed, onMounted, ref, shallowRef, unref, watch } from "vue";
/* ========================================================================== */
Expand Down Expand Up @@ -1204,7 +1204,9 @@ function scrollToNow(options?: Omit<ScrollToOptions, "to">) {
:data-booking-id="booking.id"
@click="handleBookingClick"
>
<span>{{ booking.title }}</span>
<span>{{
booking.title.replace("Students Booking Service", "").trim()
}}</span>
</div>
</div>
</div>
Expand Down

0 comments on commit 42a71e2

Please sign in to comment.