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/prompt_modal.html | |
| parent | 51e2fb6dbfb6f3f21b3f578c15c3dc0d47c4a66e (diff) | |
TLS: Remove ECH Force Query
Diffstat (limited to 'web/html/modals/prompt_modal.html')
| -rw-r--r-- | web/html/modals/prompt_modal.html | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/web/html/modals/prompt_modal.html b/web/html/modals/prompt_modal.html index 5073650f..7d4c19de 100644 --- a/web/html/modals/prompt_modal.html +++ b/web/html/modals/prompt_modal.html @@ -1,17 +1,13 @@ {{define "modals/promptModal"}} -<a-modal id="prompt-modal" v-model="promptModal.visible" :title="promptModal.title" - :closable="true" @ok="promptModal.ok" :mask-closable="false" - :confirm-loading="promptModal.confirmLoading" - :ok-text="promptModal.okText" cancel-text='{{ i18n "cancel" }}' :class="themeSwitcher.currentTheme"> - <a-input id="prompt-modal-input" :type="promptModal.type" - v-model="promptModal.value" - :autosize="{minRows: 10, maxRows: 20}" - @keydown.enter.native="promptModal.keyEnter" - @keydown.ctrl.83="promptModal.ctrlS"></a-input> +<a-modal id="prompt-modal" v-model="promptModal.visible" :title="promptModal.title" :closable="true" + @ok="promptModal.ok" :mask-closable="false" :confirm-loading="promptModal.confirmLoading" + :ok-text="promptModal.okText" cancel-text='{{ i18n "cancel" }}' :class="themeSwitcher.currentTheme"> + <a-input id="prompt-modal-input" :type="promptModal.type" v-model="promptModal.value" + :autosize="{minRows: 10, maxRows: 20}" @keydown.enter.native="promptModal.keyEnter" + @keydown.ctrl.83="promptModal.ctrlS"></a-input> </a-modal> <script> - const promptModal = { title: '', type: '', @@ -55,7 +51,7 @@ close() { this.visible = false; }, - loading(loading=true) { + loading(loading = true) { this.confirmLoading = loading; }, }; @@ -66,6 +62,5 @@ promptModal: promptModal, }, }); - </script> {{end}}
\ No newline at end of file |
