File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
mithril-explorer/src/app/registrations Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import RawJsonButton from "../../components/RawJsonButton";
14
14
import VerifiedBadge from "../../components/VerifiedBadge" ;
15
15
import PoolTicker from "../../components/PoolTicker" ;
16
16
import { updatePoolsForAggregator } from "../../store/poolsSlice" ;
17
+ import PartyId from "../../components/PartyId" ;
17
18
18
19
Chart . register (
19
20
ArcElement ,
@@ -258,7 +259,11 @@ export default function Registrations() {
258
259
{ registrations . map ( ( signer , index ) =>
259
260
< tr key = { signer . party_id } >
260
261
< td > { index } </ td >
261
- < td className = "text-break" > < VerifiedBadge tooltip = "Verified Signer" /> { ' ' } { signer . party_id } </ td >
262
+ < td className = "text-break" >
263
+ < VerifiedBadge tooltip = "Verified Signer" />
264
+ { ' ' }
265
+ < PartyId partyId = { signer . party_id } />
266
+ </ td >
262
267
< td > < PoolTicker aggregator = { aggregator } partyId = { signer . party_id } /> </ td >
263
268
< td style = { { textAlign : "end" } } > < Stake lovelace = { signer . stake } /> </ td >
264
269
</ tr >
You can’t perform that action at this time.
0 commit comments