David Smith
06/28/2021, 4:56 PMwhen
div {
h1 { ... }
when (x) {
A -> +"text"
B -> div { ... }
}
}
The actual model that this produces reverses the order of the h1
and the other child. The order is correct if I have the same but without the with
construct. The same issue happens with if
. Am I misunderstanding something about execution order in lambdas or something?CLOVIS
06/28/2021, 9:14 PMkotlinx.html
? The only reason that I could see causing this is an error in the implementation of the DSL, but that really shouldn't happen.when
all the time)David Smith
06/29/2021, 1:31 PM