File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 211211 < i *ngIf ="isOpen.desoNode " class ="fas fa-caret-down "> </ i >
212212 DeSo Node Info
213213 </ span >
214+ < div class ="ml-15px ">
215+ Remote Node Connections
216+ < table class ="fs-12px ">
217+ < thead >
218+ < td > IP</ td >
219+ < td > Status</ td >
220+ < td > Validator Info</ td >
221+ </ thead >
222+ < tbody >
223+ < tr *ngFor ="let connection of globalVars.nodeInfo.RemoteNodeConnections ">
224+ < td > {{ connection.PeerResponse.IP + ':' + connection.PeerResponse.ProtocolPort }}</ td >
225+ < td >
226+ < i [ngClass] ="connection.PeerConnected ? 'fas fa-solid fa-check fc-green' : 'fas fa-solid fa-x fc-red' "> </ i >
227+ {{ connection.RemoteNodeStatus }}
228+ </ td >
229+ < td class ="text-truncate ">
230+ {{ connection?.ValidatorResponse?.ValidatorPublicKeyBase58Check }}
231+ </ td >
232+ </ tr >
233+ </ table >
234+ </ div >
214235 < div *ngIf ="isOpen.desoNode && updatingDeSoPeer " class ="ml-15px fc-muted ">
215236 Updating DeSo peers...
216237 </ div >
You can’t perform that action at this time.
0 commit comments