Skip to content

Commit a6ce776

Browse files
committed
Use the same icons & wording for valid checks in the tx certification modal
1 parent 982438f commit a6ce776

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mithril-explorer/src/components/CertifyCardanoTransactionsModal/ValidatingProofPane.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default function ValidatingProofPane({ isProofValid }) {
2020
<td>{verification}</td>
2121
<td>
2222
{isProofValid ? (
23-
<IconBadge variant="success" tooltip="yes" icon="check-circle" />
23+
<IconBadge variant="success" tooltip="yes" icon="check-circle-fill" />
2424
) : (
2525
<IconBadge variant="danger" tooltip="no" icon="x-circle" />
2626
)}

mithril-explorer/src/components/VerifyCertificate/CertificateVerifier.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export default function CertificateVerifier({
183183
<thead>
184184
<tr>
185185
<th>Certificate hash</th>
186-
<th>Valid</th>
186+
<th>Checked</th>
187187
</tr>
188188
</thead>
189189
<tbody>
@@ -199,7 +199,7 @@ export default function CertificateVerifier({
199199
/>
200200
</td>
201201
<td>
202-
<IconBadge tooltip="Valid Certificate" variant="success" icon="mithril" />
202+
<IconBadge tooltip="yes" variant="success" icon="check-circle-fill" />
203203
</td>
204204
</tr>
205205
))}

0 commit comments

Comments
 (0)