mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-25 04:06:14 +00:00
Fix edit call link copy in bottom sheet.
This commit is contained in:
committed by
Greyson Parrelli
parent
bbbe76697d
commit
d555370076
@@ -290,7 +290,11 @@ private fun CallInfo(
|
||||
}
|
||||
|
||||
Rows.TextRow(
|
||||
text = stringResource(id = R.string.CallLinkDetailsFragment__add_call_name),
|
||||
text = if (controlAndInfoState.callLink.state.name.isNotEmpty()) {
|
||||
stringResource(id = R.string.CallLinkDetailsFragment__edit_call_name)
|
||||
} else {
|
||||
stringResource(id = R.string.CallLinkDetailsFragment__add_call_name)
|
||||
},
|
||||
onClick = onEditNameClicked
|
||||
)
|
||||
Rows.ToggleRow(
|
||||
|
||||
Reference in New Issue
Block a user