generated from ElnuDev/rust-project
Clean up unnecessary curly braces
This commit is contained in:
parent
ff53f33d56
commit
33e42c17bb
1 changed files with 10 additions and 12 deletions
|
@ -40,18 +40,16 @@ fn ResultMessage(cx: Scope, message: ReadSignal<Option<ResultMessageData>>) -> i
|
||||||
message.track();
|
message.track();
|
||||||
set_open(true);
|
set_open(true);
|
||||||
});
|
});
|
||||||
move || {
|
move || view! { cx,
|
||||||
view! { cx,
|
<Show when=move || open() fallback=|_| ()>
|
||||||
<Show when=move || open() fallback=|_| ()>
|
{move || message().map(|ResultMessageData { title, message, colorway }| view! { cx,
|
||||||
{move || message().map(|ResultMessageData { title, message, colorway }| view! { cx,
|
<div class=class_list!["box", <Colorway as Into<&str>>::into(colorway)] style="position: relative">
|
||||||
<div class=class_list!["box", <Colorway as Into<&str>>::into(colorway)] style="position: relative">
|
<strong class="block titlebar">{title}</strong>
|
||||||
<strong class="block titlebar">{title}</strong>
|
<button class="iconbutton" on:click=move |_| set_open(false) style="position: absolute; bottom: 0.5em; right: 0.5em">"×"</button>
|
||||||
<button class="iconbutton" on:click=move |_| set_open(false) style="position: absolute; bottom: 0.5em; right: 0.5em">"×"</button>
|
<p>{message}</p>
|
||||||
<p>{message}</p>
|
</div>
|
||||||
</div>
|
})}
|
||||||
})}
|
</Show>
|
||||||
</Show>
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue