Bugfix/implement text-nowrap for activity type badge (#6705)

* Implement text-nowrap

* Update changelog
pull/6709/head
Kenrick Tandrian 1 month ago committed by GitHub
parent 8eae9a3279
commit d552f2aaab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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

@ -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