Fix AutoDiscoveryStatusView border shape

This commit is contained in:
Wolf-Martell Montwé 2023-07-20 18:17:36 +02:00
parent 93cf883fca
commit eeb03b6d15
No known key found for this signature in database
GPG key ID: 6D45B21512ACBF72

View file

@ -37,7 +37,11 @@ internal fun AutoDiscoveryStatusView(
Surface(
shape = MainTheme.shapes.small,
modifier = Modifier
.border(1.dp, Color.Gray.copy(alpha = 0.5f))
.border(
width = 1.dp,
color = Color.Gray.copy(alpha = 0.5f),
shape = MainTheme.shapes.small,
)
.clickable { expanded.value = !expanded.value },
) {
Column(