Skip to content

Commit b76ba10

Browse files
guguclaude
andcommitted
fix: avoid < in own-connections @if to satisfy Angular and Biome
The HTML entity &lt; was being parsed literally inside Angular's @if expression, breaking the build. Flipped the comparison to use > so the template parses correctly without tripping Biome's HTML linter. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d7c4ab7 commit b76ba10

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/app/components/connections-list/own-connections/own-connections.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ <h2 class="connectionInfo__connectionTitle">{{ $any(connectionItem).displayTitle
3636
}
3737
</ul>
3838

39-
@if (displayedCardCount &lt; connections?.length) {
39+
@if ((connections?.length ?? 0) > displayedCardCount) {
4040
<button type="button" mat-button color="accent" class="showAllButton" (click)="showMore()">Show all</button>
4141
}
4242
@if (displayedCardCount > 3) {

0 commit comments

Comments
 (0)