Browse Source
Bugfix/implement text-nowrap for activity type badge (#6705)
* Implement text-nowrap
* Update changelog
pull/6709/head
Kenrick Tandrian
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
7 additions and
1 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/activity-type/activity-type.component.html
|
|
@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
- Extended the asset profile details dialog in the admin control panel to support editing countries for all asset types |
|
|
- Extended the asset profile details dialog in the admin control panel to support editing countries for all asset types |
|
|
- Extended the asset profile details dialog in the admin control panel to support editing sectors for all asset types |
|
|
- Extended the asset profile details dialog in the admin control panel to support editing sectors for all asset types |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Improved the style of the activity type component |
|
|
|
|
|
|
|
|
## 2.253.0 - 2026-03-06 |
|
|
## 2.253.0 - 2026-03-06 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
|
|
@ -20,5 +20,7 @@ |
|
|
} @else if (activityType === 'SELL') { |
|
|
} @else if (activityType === 'SELL') { |
|
|
<ion-icon name="arrow-down-circle-outline" /> |
|
|
<ion-icon name="arrow-down-circle-outline" /> |
|
|
} |
|
|
} |
|
|
<span class="d-none d-lg-block mx-1">{{ activityTypeLabel }}</span> |
|
|
<span class="d-none d-lg-block mx-1 text-nowrap"> |
|
|
|
|
|
{{ activityTypeLabel }} |
|
|
|
|
|
</span> |
|
|
</div> |
|
|
</div> |
|
|
|