Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into issue-29479-Create-…
Browse files Browse the repository at this point in the history
…a-default-JobQueue-Implementation-using-Postgres
  • Loading branch information
jgambarios committed Sep 19, 2024
2 parents e7b3e1d + ea7843a commit 4d0a0ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class SuggestionsListItemComponent implements FocusableOption, OnInit {
}

ngOnInit() {
this.icon = this.icon = typeof this.url === 'string' && !(this.url.split('/').length > 1);
this.icon = typeof this.url === 'string' && !(this.url.split('/').length > 1);
}

getLabel(): string {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<h3>{{ title }}</h3>
}
<dot-suggestion-list #list>
@for (item of items; track $index) {
@for (item of items; track item) {
@if (item.id !== 'divider') {
<dot-suggestions-list-item
[command]="item.command"
Expand All @@ -16,9 +16,6 @@ <h3>{{ title }}</h3>
} @else {
<div class="divider"></div>
}
<ng-template #divider>
<div class="divider"></div>
</ng-template>
}
</dot-suggestion-list>
</div>
Expand Down

0 comments on commit 4d0a0ea

Please sign in to comment.