feat: add comments under client id (#3131)

This commit is contained in:
Vadim Iskuchekov
2025-06-21 09:55:35 +02:00
committed by GitHub
parent 2e6faf69e6
commit 5c10035bd9
6 changed files with 146 additions and 20 deletions

View File

@@ -13,7 +13,12 @@
<th>Password</th>
</tr>
<tr v-for="(client, index) in inbound.settings.shadowsockses" :class="index % 2 == 1 ? 'client-table-odd-row' : ''">
<td>[[ client.email ]]</td>
<td>
<div class="client-cell">
<div class="client-email">[[ client.email ]]</div>
<div v-if="client.comment && client.comment.trim()" class="client-comment">[[ client.comment ]]</div>
</div>
</td>
<td>[[ client.password ]]</td>
</tr>
</table>