fix(ui): ensure outlinedButtonBorder respects enabled state in Screens.kt
Build and Publish Docker Images / build-and-push (., backend/services/ping/Dockerfile, ping-service, ping-service) (push) Has been cancelled
Build and Publish Docker Images / build-and-push (., config/docker/caddy/web-app/Dockerfile, web-app, web-app) (push) Has been cancelled
Build and Publish Docker Images / build-and-push (., config/docker/keycloak/Dockerfile, keycloak, keycloak) (push) Has been cancelled
Build and Publish Docker Images / build-and-push (., backend/infrastructure/gateway/Dockerfile, api-gateway, api-gateway) (push) Has been cancelled

Signed-off-by: Stefan Mogeritsch <stefan.mo.co@gmail.com>
This commit is contained in:
2026-03-28 17:03:04 +01:00
parent e30304937f
commit 6ef1fd4ca6
@@ -90,7 +90,7 @@ fun VeranstalterAuswahlV2(
// Direktnavigation beim Klick auf eine Karte // Direktnavigation beim Klick auf eine Karte
onWeiter(v.id) onWeiter(v.id)
}, },
border = if (sel) ButtonDefaults.outlinedButtonBorder else null, border = if (sel) ButtonDefaults.outlinedButtonBorder(enabled = true) else null,
) { ) {
Column(Modifier.padding(12.dp)) { Column(Modifier.padding(12.dp)) {
Text(v.name, fontWeight = FontWeight.SemiBold) Text(v.name, fontWeight = FontWeight.SemiBold)