Browse Source

Feature/add data source to asset profile search results of assistant (#5370)

* Add data source

* Update changelog
main
Thomas Kaul 12 hours ago
committed by GitHub
parent
commit
8eef97225a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 3
      libs/ui/src/lib/assistant/assistant-list-item/assistant-list-item.html

1
CHANGELOG.md

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- Included accounts in the search results of the assistant - Included accounts in the search results of the assistant
- Included the data source in the asset profile search results of the assistant
### Changed ### Changed

3
libs/ui/src/lib/assistant/assistant-list-item/assistant-list-item.html

@ -12,6 +12,9 @@
@if (item?.assetSubClassString) { @if (item?.assetSubClassString) {
· {{ item.assetSubClassString }} · {{ item.assetSubClassString }}
} }
@if (item?.mode === 'assetProfile') {
· {{ item.dataSource }}
}
</small> </small>
} }
</a> </a>

Loading…
Cancel
Save