Skip to content

Commit

Permalink
feat(ZMS-2936): format code
Browse files Browse the repository at this point in the history
  • Loading branch information
lehju committed Dec 16, 2024
1 parent a4e2925 commit 3c9ac98
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="m-content">
<h3>{{ t("service") }}</h3>
</div>
<div class="m-content border-bottom ">
<div class="m-content border-bottom">
<p>
{{ selectedService.count }}x {{ selectedService.name }}
<br />
Expand All @@ -28,7 +28,7 @@
<div class="m-content">
<h3>{{ t("location") }}</h3>
</div>
<div class="m-content border-bottom ">
<div class="m-content border-bottom">
<p>
<strong>Landeshauptstadt München</strong><br />
{{ appointment.scope.provider.contact.name }}<br />
Expand All @@ -47,7 +47,7 @@
<div class="m-content">
<h3>{{ t("time") }}</h3>
</div>
<div class="m-content border-bottom ">
<div class="m-content border-bottom">
<p>
{{ formatTime(appointment.timestamp) }} <br />
{{ t("estimatedDuration") }} {{ t("minutes") }}<br />
Expand All @@ -56,7 +56,7 @@
<div class="m-content">
<h3>{{ t("contact") }}</h3>
</div>
<div class="m-content border-bottom ">
<div class="m-content border-bottom">
<p>
{{ appointment.familyName }}
<br />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ import SubserviceListItem from "@/components/Appointment/SubserviceListItem.vue"
import { OfficeImpl } from "@/types/OfficeImpl";
import { SelectedServiceProvider } from "@/types/ProvideInjectTypes";
import { ServiceImpl } from "@/types/ServiceImpl";
import { getServiceBaseURL, MAX_SLOTS} from "@/utils/Constants";
import { getServiceBaseURL, MAX_SLOTS } from "@/utils/Constants";
const props = defineProps<{
preselectedServiceId: string | undefined;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<muc-counter
v-model="count"
:label="subService.name"
:link="getServiceBaseURL() + subService.id"
:link="getServiceBaseURL() + subService.id"
:max="maxValue"
:disabled="disabled"
/>
Expand All @@ -18,7 +18,7 @@ import { computed, ref, watch } from "vue";
import { OfficeImpl } from "@/types/OfficeImpl";
import { SubService } from "@/types/SubService";
import { getServiceBaseURL, MAX_SLOTS} from "@/utils/Constants";
import { getServiceBaseURL, MAX_SLOTS } from "@/utils/Constants";
const props = defineProps<{
subService: SubService;
Expand Down

0 comments on commit 3c9ac98

Please sign in to comment.