fix intendation in accounts.rs

This commit is contained in:
Sebastian Hugentobler 2022-03-26 17:19:04 +01:00
parent 36e35768c1
commit b4fcbdfef8
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ impl Component for Accounts {
html! {
<>
if ctx.props().account_nrs.is_empty() {
<h2>{"No accounts"}</h2>
<h2>{"No accounts"}</h2>
} else {
<ul class={classes!("accounts")}>
{ for ctx.props().account_nrs.iter().map(|e| self.account_entry(e, &ctx.props().selected_nr, ctx)) }