Fix typo in voicemail count display

This commit is contained in:
Christophe Deschamps 2025-08-28 17:38:36 +02:00
parent 9074914f39
commit 033051066b

View file

@ -38,8 +38,8 @@ Rectangle{
width: Math.round(14 * DefaultStyle.dp) * scaleFactor width: Math.round(14 * DefaultStyle.dp) * scaleFactor
height: width height: width
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
font.weight: Typography.p2.pixelSize font.weight: Typography.p2.weight
font.pixelSize: Typography.p2.weight * scaleFactor font.pixelSize: Typography.p2.pixelSize * scaleFactor
color: DefaultStyle.danger_500main color: DefaultStyle.danger_500main
text: voicemailCount >= 100 ? '99+' : voicemailCount text: voicemailCount >= 100 ? '99+' : voicemailCount
visible: showMwi && voicemailCount > 0 visible: showMwi && voicemailCount > 0