diff options
Diffstat (limited to 'web/html/form/protocol')
| -rw-r--r-- | web/html/form/protocol/shadowsocks.html | 7 | ||||
| -rw-r--r-- | web/html/form/protocol/trojan.html | 7 | ||||
| -rw-r--r-- | web/html/form/protocol/vless.html | 7 | ||||
| -rw-r--r-- | web/html/form/protocol/vmess.html | 7 |
4 files changed, 4 insertions, 24 deletions
diff --git a/web/html/form/protocol/shadowsocks.html b/web/html/form/protocol/shadowsocks.html index 04cd9399..06e12075 100644 --- a/web/html/form/protocol/shadowsocks.html +++ b/web/html/form/protocol/shadowsocks.html @@ -13,12 +13,7 @@ <th>Password</th> </tr> <tr v-for="(client, index) in inbound.settings.shadowsockses" :class="index % 2 == 1 ? 'client-table-odd-row' : ''"> - <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.email ]]</td> <td>[[ client.password ]]</td> </tr> </table> diff --git a/web/html/form/protocol/trojan.html b/web/html/form/protocol/trojan.html index 6c7b3773..fc327721 100644 --- a/web/html/form/protocol/trojan.html +++ b/web/html/form/protocol/trojan.html @@ -12,12 +12,7 @@ <th>Password</th> </tr> <tr v-for="(client, index) in inbound.settings.trojans" :class="index % 2 == 1 ? 'client-table-odd-row' : ''"> - <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.email ]]</td> <td>[[ client.password ]]</td> </tr> </table> diff --git a/web/html/form/protocol/vless.html b/web/html/form/protocol/vless.html index 88274f71..3cebda6e 100644 --- a/web/html/form/protocol/vless.html +++ b/web/html/form/protocol/vless.html @@ -12,12 +12,7 @@ <th>ID</th> </tr> <tr v-for="(client, index) in inbound.settings.vlesses" :class="index % 2 == 1 ? 'client-table-odd-row' : ''"> - <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.email ]]</td> <td>[[ client.id ]]</td> </tr> </table> diff --git a/web/html/form/protocol/vmess.html b/web/html/form/protocol/vmess.html index 94a0cc58..3c5200ac 100644 --- a/web/html/form/protocol/vmess.html +++ b/web/html/form/protocol/vmess.html @@ -13,12 +13,7 @@ <th>{{ i18n "security" }}</th> </tr> <tr v-for="(client, index) in inbound.settings.vmesses" :class="index % 2 == 1 ? 'client-table-odd-row' : ''"> - <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.email ]]</td> <td>[[ client.id ]]</td> <td>[[ client.security ]]</td> </tr> |
