mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 02:58:07 +00:00
Fix display of call counter
This commit is contained in:
parent
7e1e3adf8d
commit
4d10b44da5
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ struct ContentView: View {
|
|||
.padding(.leading, 10)
|
||||
|
||||
if callViewModel.callsCounter > 1 {
|
||||
Text(String(format: String(localized: "calls_count_label"), callViewModel.callsCounter))
|
||||
Text(String(format: String(localized: "calls_count_label"), callViewModel.callsCounter.description))
|
||||
.default_text_style_white(styleSize: 16)
|
||||
} else {
|
||||
Text("\(callViewModel.displayName)")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue