-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug/212 decode errors #229
Conversation
>{{ company.apprenticeshipManager?.CompanyName }}<br | ||
/></ng-container> | ||
<ng-container *ngIf="company.apprenticeshipManager?.CompanyNameAddition" | ||
>{{ company.apprenticeshipManager?.CompanyNameAddition }}<br |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gibt es hier einen zusätzlichen Abstand, wegen dem <br>
, wenn nur eines der beiden vornhanden ist, oder ist das kein Problem? Vielleicht könntest du die einzelnen Zeilen einfach in ein <div>
wrappen, welches ein Blockelement ist: <div *ngIf="company.apprenticeshipManager?.CompanyName" >{{ company.apprenticeshipContract.CompanyName }}</div>
. Das wäre wohl grundsätzlich im ganzen File der Fall.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sollte nicht, die
sind ja innerhalb vom Container. Oder verstehe ich etwas falsch?
Im konkreten Beispiel, wo CompanyNameAddition
nicht gesetzt ist, gibt es keinen Zusätzlichen Abstand.
Ansonsten müsste man es dann gleich in allen Dateien anpassen, wo wir das bisher so machen...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nein, ich denke es ist OK so 👍
> | ||
{{ company.jobTrainer.Lastname }} | ||
{{ company.jobTrainer.Firstname }}<br /> | ||
</ng-container> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Könnte ev. auch nur der Nachname gesetzt sein?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ich weiss es nicht. Das scheint mir nicht wahrscheinlich.
Dieselbe Frage würde sich dann auch bei apprenticeshipManager
und person
stellen.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Es wäre wohl etwas robuster dies vorzusehen:
<ng-container *ngIf="company.jobTrainer.Lastname || company.jobTrainer.Firstname"
>
{{ company.jobTrainer.Lastname || '' }}
{{ company.jobTrainer.Firstname || '' }}<br />
</ng-container>
Aber ist wohl nicht so wichtig...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Find ich gut und habe ich für die Fälle in der ApprenticeshipCompany-Komponente so übernommen.
No description provided.