diff options
Diffstat (limited to 'web/html/form/protocol/trojan.html')
| -rw-r--r-- | web/html/form/protocol/trojan.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/web/html/form/protocol/trojan.html b/web/html/form/protocol/trojan.html index fc327721..6c7b3773 100644 --- a/web/html/form/protocol/trojan.html +++ b/web/html/form/protocol/trojan.html @@ -12,7 +12,12 @@ <th>Password</th> </tr> <tr v-for="(client, index) in inbound.settings.trojans" :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> |
