fix: scrollbar appearing on digest auth input fields and other improvements (#4492)

Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
Anwarul Islam
2024-10-29 21:05:13 +06:00
committed by GitHub
parent 108315d1b4
commit 1236e6b719
4 changed files with 9 additions and 12 deletions

View File

@@ -272,8 +272,6 @@ const selectDigestAuthType = () => {
algorithm = "MD5",
} = auth.value as HoppRESTAuthDigest
console.error(`Auth is `, auth.value)
auth.value = {
...auth.value,
authType: "digest",

View File

@@ -36,8 +36,7 @@
:auto-complete-env="true"
:placeholder="`${t(
'authorization.digest.realm'
)} (e.g. testrealm@example.com)
`"
)} (e.g. testrealm@example.com)`"
:envs="envs"
/>
</div>
@@ -98,8 +97,7 @@
<SmartEnvInput
v-model="auth.qop"
:auto-complete-env="true"
:placeholder="`${t('authorization.digest.qop')} (e.g. auth-int)
`"
:placeholder="`${t('authorization.digest.qop')} (e.g. auth-int)`"
:envs="envs"
/>
</div>
@@ -108,8 +106,7 @@
<SmartEnvInput
v-model="auth.nc"
:auto-complete-env="true"
:placeholder="`${t('authorization.digest.nonce_count')} (e.g. 00000001)
`"
:placeholder="`${t('authorization.digest.nonce_count')} (e.g. 00000001)`"
:envs="envs"
/>
</div>
@@ -118,8 +115,7 @@
<SmartEnvInput
v-model="auth.cnonce"
:auto-complete-env="true"
:placeholder="`${t('authorization.digest.client_nonce')} (e.g. Oa4f113b)
`"
:placeholder="`${t('authorization.digest.client_nonce')} (e.g. Oa4f113b)`"
:envs="envs"
/>
</div>