forked from mirrors/linphone-iphone
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)
|
.padding(.leading, 10)
|
||||||
|
|
||||||
if callViewModel.callsCounter > 1 {
|
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)
|
.default_text_style_white(styleSize: 16)
|
||||||
} else {
|
} else {
|
||||||
Text("\(callViewModel.displayName)")
|
Text("\(callViewModel.displayName)")
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue