diff options
| author | Tara Rostami <132676256+TaraRostami@users.noreply.github.com> | 2025-09-20 10:36:56 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-20 10:36:56 +0300 |
| commit | 5e7a3db873466936a1ee1d2e9c6cd5b6cff0a1ec (patch) | |
| tree | 27daa8458d1617ff91bca3add0820ae51b23f97d /web/html/modals/inbound_info_modal.html | |
| parent | 6ced549deaecb42b9bb93ea9efcb4c1bbaabe8a4 (diff) | |
Minor Fixes (#3520)
Diffstat (limited to 'web/html/modals/inbound_info_modal.html')
| -rw-r--r-- | web/html/modals/inbound_info_modal.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/web/html/modals/inbound_info_modal.html b/web/html/modals/inbound_info_modal.html index 25f43506..8e4bfc2e 100644 --- a/web/html/modals/inbound_info_modal.html +++ b/web/html/modals/inbound_info_modal.html @@ -106,7 +106,10 @@ <a-tag v-else color="red">{{ i18n "none" }}</a-tag> <br /> {{ i18n "encryption" }} - <a-tag :color="inbound.settings.encryption ? 'green' : 'red'">[[ inbound.settings.encryption ? inbound.settings.encryption : '' ]]</a-tag> + <a-tag class="info-large-tag" :color="inbound.settings.encryption ? 'green' : 'red'">[[ inbound.settings.encryption ? inbound.settings.encryption : '' ]]</a-tag> + <a-tooltip title='{{ i18n "copy" }}'> + <a-button size="small" icon="snippets" @click="copy(inbound.settings.encryption)"></a-button> + </a-tooltip> <br /> <template v-if="inbound.stream.security != 'none'"> {{ i18n "domainName" }} |
