File tree 2 files changed +22
-1
lines changed
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ COPY ./src/environments/environment.$environment.ts ./src/environments/environme
40
40
RUN npm run build_prod
41
41
42
42
# build minified version of frontend, served using caddy
43
- FROM caddy:2.3.0 -alpine
43
+ FROM caddy:2.7.6 -alpine
44
44
45
45
WORKDIR /frontend
46
46
Original file line number Diff line number Diff line change 211
211
< i *ngIf ="isOpen.desoNode " class ="fas fa-caret-down "> </ i >
212
212
DeSo Node Info
213
213
</ 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 >
214
235
< div *ngIf ="isOpen.desoNode && updatingDeSoPeer " class ="ml-15px fc-muted ">
215
236
Updating DeSo peers...
216
237
</ div >
You can’t perform that action at this time.
0 commit comments