Skip to content

Commit

Permalink
Update more apps module and changelog"
Browse files Browse the repository at this point in the history
  • Loading branch information
ludovic35 committed Jun 20, 2024
1 parent 3ce0519 commit 945acda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- [SDK] Update More Apps to use ListItems with subtile on two lines ([#651](https://github.com/Orange-OpenSource/ods-ios/issues/651))
- [Doc] Wrong name of MoreApprs module in documentation ([#815](https://github.com/Orange-OpenSource/ods-ios/issues/815))
- [Doc] Update components and modules documentation to add a description of the API ([#759](https://github.com/Orange-OpenSource/ods-ios/issues/759))
- [DemoApp/SDK] Rename "Recirculation" module to "MoreApps", and use "EmptyState" assets from Theme bundle ([#801](https://github.com/Orange-OpenSource/ods-ios/issues/801))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ public struct ODSMoreAppsView: View {
private func listItem(for app: MoreAppsAppDetails) -> some View {
let item = ODSListItem(title: Text(app.title),
subtitle: app.description != nil ? Text(app.description!) : nil,
subtitleNumberOfLines: .two,
leading: leadingAppIcon(from: app))
.lineLimit(3) // 3 lines asked
.accessibilityChildren {
Text(app.title)
if let description = app.description {
Expand Down

0 comments on commit 945acda

Please sign in to comment.