Fix AutoDiscoveryStatusView border shape
This commit is contained in:
parent
93cf883fca
commit
eeb03b6d15
1 changed files with 5 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue