fix(ui): remove duplicate versionCode from update button label
This commit is contained in:
parent
309f6961a5
commit
a6cc4ca4bf
1 changed files with 2 additions and 2 deletions
|
|
@ -487,7 +487,7 @@ internal fun SettingsScreen(
|
||||||
modifier = Modifier.size(18.dp)
|
modifier = Modifier.size(18.dp)
|
||||||
)
|
)
|
||||||
Spacer(modifier = Modifier.width(8.dp))
|
Spacer(modifier = Modifier.width(8.dp))
|
||||||
Text("Update durchführen (${s.versionName}.${s.versionCode})")
|
Text("Update durchführen (${s.versionName})")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
is UpdateStatus.Downloading -> {
|
is UpdateStatus.Downloading -> {
|
||||||
|
|
@ -513,7 +513,7 @@ internal fun SettingsScreen(
|
||||||
containerColor = MaterialTheme.colorScheme.primary
|
containerColor = MaterialTheme.colorScheme.primary
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
Text("${s.versionName}.${s.versionCode} wird installiert…")
|
Text("${s.versionName} wird installiert…")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
is UpdateStatus.Error -> {
|
is UpdateStatus.Error -> {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue