-
Notifications
You must be signed in to change notification settings - Fork 0
maint: angular 21 upgrade #592
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
Conversation
Test-bot: skip
User Test ResultsTest specification and instructions User tests are not required |
darcywong00
left a comment
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.
ah, already merged.
platform.value was the only real question I had
| @if (user.login != '') { | ||
| <span class="summary-label">Issues <a href="https://github.com/search?q=org%3Akeymanapp+assignee%3A{{user.login}}+milestone%3A{{status.currentSprint?.title}}+is%3Aopen&type=issues" target="_blank">assigned</a> to <a href="https://github.com/{{user.login}}" target="_blank">@{{user.login}}</a> in {{status.currentSprint?.title}}</span> | ||
| } | ||
| @if (user.login == '') { |
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.
Does else work?
| @if (user.login == '') { | |
| @else { |
| @@ -1 +1,5 @@ | |||
| <span (click)="copyToClipboard()" title="{{title}}"><ng-container *ngIf="!loading">📋</ng-container><span *ngIf="loading" class="spinner-border spinner-border-sm"></span></span> | |||
| <span (click)="copyToClipboard()" title="{{title}}">@if (!loading) { | |||
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.
Do you want @if (!loading) { on a separate line for coding tyle?
| <app-pull-request [status]="status" [changeCounter]="changeCounter" [teamCity]="status.teamCity" [scope]="'platform'" [scopeValue]="platform.value.id" [gravityX]="'left'" [gravityY]="'bottom'" [pull]="pull"></app-pull-request> | ||
| </span> | ||
| </div> | ||
| @for (emoji of platform.pullsByEmoji | keyvalue; track emoji.key) { |
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.
Throughout the PR I see platform.value is now just platform.
Yeah, that was a change made by the way loops are now done with |
Test-bot: skip