Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Roland Sams committed Jan 24, 2024
1 parent e22b350 commit a9e7e16
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<div class="grid">
<div class="col-12">
<div class="card max-w-30rem flex flex-column justify-content-center">
{{ calendarSubUrl }}
<div class="col-12 flex justify-content-center">
<div
class="card max-w-30rem flex flex-column gap-4 justify-content-center"
>
<p class="opacity-80">
{{ calendarSubUrl }}
</p>
<button
pButton
pRipple
Expand All @@ -19,7 +23,7 @@
</div>
<div class="md:col-6 col-12">
<div class="card">
<h5>iPhone</h5>
<h5>Anleitung für iPhone</h5>
<ul>
<li>Kopiere den Link</li>
<li>Öffne die iPhone Kalender-APP</li>
Expand All @@ -33,7 +37,7 @@ <h5>iPhone</h5>
</div>
<div class="md:col-6 col-12">
<div class="card">
<h5>Android</h5>
<h5>Anleitung für Android</h5>
<ul>
<li>
Dein Google-Konto muss auf deinem Smartphone aktiviert sein!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ export class AnschriftDisplayModel
{
label: "Adresse",
getValue: (model: Anschrift) =>
`${model.strasse} ${model.hausnummer}, ${model.plz} ${model.ort}`,
`${model.strasse ?? ""} ${model.hausnummer ?? ""}
${model.plz ?? ""} ${model.ort ?? ""}`,
},
{
label: "Telefon Haupt",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class InstrumentDisplayModel
getValue: (model: Instrument) => model.aufbewahrungsort,
},
{
label: "Mitglied",
label: "Ausgegeben an",
getValue: (model: Instrument) =>
this.namePipe.transform(model.mitglied),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export class MitgliedDisplayModel
{
label: "Adresse",
getValue: (model: Mitglied) =>
`${model.strasse} ${model.hausnummer}, ${model.plz} ${model.ort}`,
`${model.strasse ?? ""} ${model.hausnummer ?? ""}
${model.plz ?? ""} ${model.ort ?? ""}`,
},
{
label: "Telefon",
Expand Down

0 comments on commit a9e7e16

Please sign in to comment.