Skip to content

Commit

Permalink
bug: fix address check
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Jun 1, 2022
1 parent ab15214 commit f85ee33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/grants/templates/grants/cart/qr/celo.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
<div class="col" v-show="selectedQRPayment === 'txid'">
<div>
<label :for="`celo_payoutTxId_${grant.grant_id}`" class="font-smaller-1">Transaction Hash:</label>
<input v-model="grant.payoutTxId" :name="`payoutTxId_${grant.grant_id}`" :id="`celo_payoutTxId_${grant.grant_id}`" placeholder="00000..." class="form-control form-control-sm" pattern="[a-zA-Z0-9]{64}$" :disabled="grant.success">
<input v-model="grant.payoutTxId" :name="`payoutTxId_${grant.grant_id}`" :id="`celo_payoutTxId_${grant.grant_id}`" placeholder="00000..." class="form-control form-control-sm" pattern="0x[a-zA-Z0-9]{64}$" :disabled="grant.success">
<small class="form-text text-muted">Paste the transaction id</small>
</div>
</div>
Expand Down

0 comments on commit f85ee33

Please sign in to comment.