refactor(sh-admin): updated data sharing doc links + remove disabled property from all inputs in configurations (#3894)

This commit is contained in:
Joel Jacob Stephen
2024-03-13 16:18:27 +05:30
committed by GitHub
parent acfb0189df
commit be7387ed19
4 changed files with 2 additions and 6 deletions

View File

@@ -45,7 +45,6 @@
:type=" :type="
isMasked(provider.name, field.key) ? 'password' : 'text' isMasked(provider.name, field.key) ? 'password' : 'text'
" "
:disabled="isMasked(provider.name, field.key)"
:autofocus="false" :autofocus="false"
class="!my-2 !bg-primaryLight flex-1" class="!my-2 !bg-primaryLight flex-1"
/> />

View File

@@ -21,13 +21,12 @@
</HoppSmartToggle> </HoppSmartToggle>
</div> </div>
<!-- TODO: Update the link below -->
<HoppButtonSecondary <HoppButtonSecondary
outline outline
filled filled
:icon="IconShieldQuestion" :icon="IconShieldQuestion"
:label="t('configs.data_sharing.see_shared')" :label="t('configs.data_sharing.see_shared')"
to="http://docs.hoppscotch.io" to="https://docs.hoppscotch.io/documentation/self-host/community-edition/telemetry"
blank blank
class="w-min my-2" class="w-min my-2"
/> />

View File

@@ -37,7 +37,6 @@
<HoppSmartInput <HoppSmartInput
v-model="smtpConfigs.fields[field.key]" v-model="smtpConfigs.fields[field.key]"
:type="isMasked(field.key) ? 'password' : 'text'" :type="isMasked(field.key) ? 'password' : 'text'"
:disabled="isMasked(field.key)"
:autofocus="false" :autofocus="false"
class="!my-2 !bg-primaryLight flex-1" class="!my-2 !bg-primaryLight flex-1"
/> />

View File

@@ -28,10 +28,9 @@
> >
{{ t('data_sharing.toggle_description') }} {{ t('data_sharing.toggle_description') }}
</HoppSmartToggle> </HoppSmartToggle>
<!-- TODO: Update link -->
<HoppSmartAnchor <HoppSmartAnchor
blank blank
to="http://docs.hoppscotch.io" to="https://docs.hoppscotch.io/documentation/self-host/community-edition/telemetry"
:label="t('data_sharing.see_shared')" :label="t('data_sharing.see_shared')"
class="underline" class="underline"
/> />