Fix some minor template issues

This commit is contained in:
2020-05-11 13:15:17 +02:00
parent cedbe3cb3d
commit 3cc01cce4e
2 changed files with 7 additions and 5 deletions
+5 -4
View File
@@ -1,10 +1,11 @@
<form onsubmit={{action "submit"}}>
<p>
<label for="c-account">Ethereum account</label>
<Input @name="account" @id="c-account"
@type="text" value={{this.account}}
@placeholder="0xF18E631Ea191aE4ebE70046Fcb01a436554421BA4"
@class={{if this.isValidAccount "valid" ""}} />
<Input @type="text"
@value={{this.account}}
name="account" id="c-account"
placeholder="0xF18E631Ea191aE4ebE70046Fcb01a436554421BA4"
class={{if this.isValidAccount "valid" ""}} />
</p>
<p>
<label for="c-kind">Kind</label>
+2 -1
View File
@@ -36,7 +36,8 @@
<span class="number">{{this.contributorsWithKredits.length}}</span> contributors
</p>
<p class="stats">
<Input @type="checkbox" @id="hide-unnconfirmed-kredits"
<Input id="hide-unnconfirmed-kredits"
@type="checkbox"
@checked={{this.showUnconfirmedKredits}} />
<label for="hide-unnconfirmed-kredits">Show unconfirmed kredits in toplist</label>
</p>