1
0
mirror of https://github.com/dkmstr/openuds-gui.git synced 2025-01-03 05:17:36 +03:00

Fixed network on sfaff info to use list instead of a single line string

This commit is contained in:
Adolfo Gómez García 2024-12-18 16:18:11 +01:00
parent cae5f23f61
commit fed386203e
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23

View File

@ -12,7 +12,8 @@
</mat-expansion-panel-header> </mat-expansion-panel-header>
<ol> <ol>
<li><uds-translate>Client IP</uds-translate>: {{ api.staffInfo.ip }}</li> <li><uds-translate>Client IP</uds-translate>: {{ api.staffInfo.ip }}</li>
<li *ngIf="api.staffInfo.ip_proxy !== api.staffInfo.ip"><uds-translate>Detected proxy ip</uds-translate>: {{ api.staffInfo.ip_proxy }}</li> <li *ngIf="api.staffInfo.ip_proxy !== api.staffInfo.ip"><uds-translate>Detected proxy ip</uds-translate>: {{
api.staffInfo.ip_proxy }}</li>
</ol> </ol>
</mat-expansion-panel> </mat-expansion-panel>
@ -40,8 +41,9 @@
<uds-translate>UDS networks for this IP</uds-translate> <uds-translate>UDS networks for this IP</uds-translate>
</mat-panel-description> </mat-panel-description>
</mat-expansion-panel-header> </mat-expansion-panel-header>
<span *ngFor="let n of api.staffInfo.networks">{{ n }}</span>&nbsp; <ol>
<li *ngFor="let n of api.staffInfo.networks">{{ n }}</li>&nbsp;
</ol>
</mat-expansion-panel> </mat-expansion-panel>
</mat-accordion> </mat-accordion>
</div> </div>