Browse Source
Bugfix/spacing in testimonials of landing page (#7398)
* Fix spacing
* Update changelog
pull/7402/head^2
Thomas Kaul
18 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
7 additions and
3 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/landing/landing-page.html
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
- Improved the language localization for Polish (`pl`) |
|
|
- Improved the language localization for Polish (`pl`) |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Improved the spacing in the testimonial section on the landing page |
|
|
|
|
|
|
|
|
## 3.32.0 - 2026-07-22 |
|
|
## 3.32.0 - 2026-07-22 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
@ -247,11 +247,11 @@ |
|
|
@if (testimonial.url) { |
|
|
@if (testimonial.url) { |
|
|
<a target="_blank" [href]="testimonial.url">{{ |
|
|
<a target="_blank" [href]="testimonial.url">{{ |
|
|
testimonial.author |
|
|
testimonial.author |
|
|
}}</a> |
|
|
}}</a |
|
|
|
|
|
>, |
|
|
} @else { |
|
|
} @else { |
|
|
<span>{{ testimonial.author }}</span> |
|
|
<span>{{ testimonial.author }},</span> |
|
|
} |
|
|
} |
|
|
, |
|
|
|
|
|
{{ testimonial.country }} |
|
|
{{ testimonial.country }} |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|