File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
service/src/main/kotlin/app/cash/backfila/ui/components Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import app.cash.backfila.dashboard.GetServicesAction
4
4
import kotlinx.html.InputType
5
5
import kotlinx.html.TagConsumer
6
6
import kotlinx.html.a
7
+ import kotlinx.html.classes
7
8
import kotlinx.html.div
8
9
import kotlinx.html.h3
9
10
import kotlinx.html.input
@@ -35,11 +36,11 @@ fun TagConsumer<*>.ServiceSelect(
35
36
role = " list"
36
37
37
38
services.map { (servicePath, service) ->
38
- a {
39
+ a(classes = " registration " ) {
39
40
val variant = if (servicePath.split(" /" ).last() == " default" ) null else servicePath.split(" /" ).last()
40
41
href = serviceLinkBuilder(service.name, variant)
41
42
42
- this @ul.li(" registration col-span-1 divide-y divide-gray-200 rounded-lg bg-white shadow" ) {
43
+ this @ul.li(" col-span-1 divide-y divide-gray-200 rounded-lg bg-white shadow" ) {
43
44
div(" flex w-full items-center justify-between space-x-6 p-6" ) {
44
45
div(" flex-1 truncate" ) {
45
46
div(" flex items-center space-x-3" ) {
You can’t perform that action at this time.
0 commit comments