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
parent
commit
d552f2aaab
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 4
      libs/ui/src/lib/activity-type/activity-type.component.html

4
CHANGELOG.md

@ -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 sectors for all asset types
### Fixed
- Improved the style of the activity type component
## 2.253.0 - 2026-03-06
### Added

4
libs/ui/src/lib/activity-type/activity-type.component.html

@ -20,5 +20,7 @@
} @else if (activityType === 'SELL') {
<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>

Loading…
Cancel
Save