Merge "Prevent blank sim label showing on screen." into main
This commit is contained in:
committed by
Android (Google) Code Review
commit
5ef0fe533e
@@ -111,7 +111,7 @@ private fun LabelSimPreference(
|
||||
placeholder = {Text(text = originalSimCarrierName)},
|
||||
modifier = Modifier.fillMaxWidth()
|
||||
) {
|
||||
titleSimName = it
|
||||
titleSimName = if (it.isEmpty()) originalSimCarrierName else it
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user