mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2026-01-18 04:22:27 +01:00
feat:#60 format, lint and fix build
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<script lang="ts" setup>
|
||||
import { Ref, ref } from "vue";
|
||||
import { fetchRoom } from "@/api/fetchRoom.ts";
|
||||
import RoomOccupation from "@/components/RoomOccupation.vue";
|
||||
import { fetchRoom } from "../api/fetchRoom.ts";
|
||||
import RoomOccupation from "../components/RoomOccupation.vue";
|
||||
|
||||
const rooms = async () => {
|
||||
return await fetchRoom();
|
||||
@@ -21,7 +21,7 @@ rooms().then(
|
||||
<template>
|
||||
<div class="flex flex-column">
|
||||
<div class="flex align-items-center justify-content-center h-4rem m-2">
|
||||
<h3 class="text-4xl">{{$t('roomFinderPage.headline')}}</h3>
|
||||
<h3 class="text-4xl">{{ $t("roomFinderPage.headline") }}</h3>
|
||||
<i
|
||||
class="pi pi-search vertical-align-baseline ml-3"
|
||||
style="font-size: 2rem"
|
||||
@@ -30,7 +30,7 @@ rooms().then(
|
||||
<div
|
||||
class="flex align-items-center justify-content-center h-4rem border-round m-2"
|
||||
>
|
||||
<h5 class="text-2xl">{{$t('roomFinderPage.detail')}}</h5>
|
||||
<h5 class="text-2xl">{{ $t("roomFinderPage.detail") }}</h5>
|
||||
</div>
|
||||
<div
|
||||
class="flex align-items-center justify-content-center border-round m-2"
|
||||
@@ -43,7 +43,7 @@ rooms().then(
|
||||
option-label="name"
|
||||
:placeholder="$t('roomFinderPage.dropDownSelect')"
|
||||
:empty-message="$t('roomFinderPage.noRoomsAvailable')"
|
||||
:autoFilterFocus="true"
|
||||
:auto-filter-focus="true"
|
||||
/>
|
||||
</div>
|
||||
<div class="m-6">
|
||||
|
||||
Reference in New Issue
Block a user