[fenix] For https://github.com/mozilla-mobile/fenix/issues/21771 - Show url when recent tab's title is not available

This is the same previously used approach and the same used for tabs tray.
pull/600/head
Mugurell 3 years ago committed by mergify[bot]
parent b566e3ed7f
commit bf76a1871c

@ -78,7 +78,11 @@ fun RecentTabs(
RecentTabItem( RecentTabItem(
tabId = tab.state.id, tabId = tab.state.id,
url = tab.state.content.url, url = tab.state.content.url,
title = tab.state.content.title, title = if (tab.state.content.title.isNotEmpty()) {
tab.state.content.title
} else {
tab.state.content.url
},
thumbnail = tab.state.content.thumbnail, thumbnail = tab.state.content.thumbnail,
onRecentTabClick = onRecentTabClick onRecentTabClick = onRecentTabClick
) )

Loading…
Cancel
Save