Skip to content
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

Merged
merged 3 commits into from
Nov 4, 2020
Merged

Bug/212 decode errors #229

merged 3 commits into from
Nov 4, 2020

Conversation

caebr
Copy link
Collaborator

@caebr caebr commented Nov 4, 2020

No description provided.

@caebr caebr requested a review from hupf November 4, 2020 11:24
>{{ company.apprenticeshipManager?.CompanyName }}<br
/></ng-container>
<ng-container *ngIf="company.apprenticeshipManager?.CompanyNameAddition"
>{{ company.apprenticeshipManager?.CompanyNameAddition }}<br
Copy link
Collaborator

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.

Copy link
Collaborator Author

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...

Copy link
Collaborator

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>
Copy link
Collaborator

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?

Copy link
Collaborator Author

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.

Copy link
Collaborator

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...

Copy link
Collaborator Author

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.

@caebr caebr merged commit fbcedd4 into master Nov 4, 2020
@mfehlmann mfehlmann deleted the bug/212-decode-errors branch April 21, 2022 11:42
@mfehlmann mfehlmann restored the bug/212-decode-errors branch April 21, 2022 11:42
@mfehlmann mfehlmann deleted the bug/212-decode-errors branch April 21, 2022 11:42
@schefbi schefbi restored the bug/212-decode-errors branch May 10, 2022 09:48
@schefbi schefbi deleted the bug/212-decode-errors branch May 10, 2022 09:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants