Skip to content

Commit 6a7617a

Browse files
committed
typo fix && remove double p tag rendering
1 parent 4600d69 commit 6a7617a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/community/community.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@
7979
<planet-loading-spinner text="Loading description..." i18n-text></planet-loading-spinner>
8080
}
8181
@if (!teamLoading) {
82-
<p>@if (team.description) {
82+
@if (team.description) {
8383
<planet-markdown [content]="team.description || ''"></planet-markdown>
8484
} @else {
8585
<p i18n>No description available.</p>
86-
}</p>
86+
}
8787
}
8888
<ng-container *planetAuthorizedRoles="''">
8989
@if (!planetCode) {

src/app/shared/planet-local-status.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { MatIcon } from '@angular/material/icon';
77
'template': `
88
@switch (status) {
99
@case ('match') {
10-
<mat-icon i18n-title title="Upto date">done_all</mat-icon>
10+
<mat-icon i18n-title title="Up to date">done_all</mat-icon>
1111
}
1212
@case ('newerAvailable') {
1313
<mat-icon i18n-title title="Newer">fiber_new</mat-icon>

0 commit comments

Comments
 (0)