diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2026-05-04 14:20:24 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2026-05-04 14:20:24 +0300 |
| commit | e19061d513b8c4fb2207b4a553a96ea086089612 (patch) | |
| tree | 8a05450f0f6d3e8a2a182976b1a38bf5cca824ea /web/html/modals/dns_presets_modal.html | |
| parent | 51e2fb6dbfb6f3f21b3f578c15c3dc0d47c4a66e (diff) | |
TLS: Remove ECH Force Query
Diffstat (limited to 'web/html/modals/dns_presets_modal.html')
| -rw-r--r-- | web/html/modals/dns_presets_modal.html | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/web/html/modals/dns_presets_modal.html b/web/html/modals/dns_presets_modal.html index 03058c9d..0bc3126b 100644 --- a/web/html/modals/dns_presets_modal.html +++ b/web/html/modals/dns_presets_modal.html @@ -5,10 +5,12 @@ <a-list-item v-for="dns in dnsPresetsDatabase" :style="{ padding: '12px 16px' }"> <div class="ant-dns-presets-line"> <a-space direction="horizontal" size="small" align="center"> - <a-tag :color="dns.family ? 'purple' : 'green'">[[ dns.family ? '{{ i18n "pages.xray.dns.dnsPresetFamily" }}' : 'DNS' ]]</a-tag> + <a-tag :color="dns.family ? 'purple' : 'green'">[[ dns.family ? '{{ i18n "pages.xray.dns.dnsPresetFamily" }}' + : 'DNS' ]]</a-tag> <span class="ant-dns-presets-list-name">[[ dns.name ]]</span> </a-space> - <a-button class="ant-dns-presets-install" type="primary" @click="dnsPresetsModal.install(dns.data)">{{ i18n "install" }}</a-button> + <a-button class="ant-dns-presets-install" type="primary" + @click="dnsPresetsModal.install(dns.data)">{{ i18n "install" }}</a-button> </div> </a-list-item> </a-list> @@ -36,8 +38,7 @@ </style> <script> - const dnsPresetsDatabase = [ - { + const dnsPresetsDatabase = [{ name: 'Google DNS', family: false, data: [ @@ -96,7 +97,11 @@ install(selectedPreset) { return ObjectUtil.execute(dnsPresetsModal.selected, selectedPreset); }, - show({ title = '', selected = (selectedPreset) => { }, isEdit = false }) { + show({ + title = '', + selected = (selectedPreset) => {}, + isEdit = false + }) { this.title = title; this.selected = selected; this.visible = true; |
