Skip to content

Commit

Permalink
feat: input (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
chubetho authored Sep 19, 2023
1 parent 5a5b921 commit 3c9d694
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/components/SettingsAdvanced.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async function setApiKey(key: EnvKey) {
</BaseLabel>

<div class="min-w-400px flex gap-x-3">
<BaseTextArea id="SERVICE_ACOUSTID_API_KEY" v-model="env.SERVICE_ACOUSTID_API_KEY" />
<BaseInput id="SERVICE_ACOUSTID_API_KEY" v-model="env.SERVICE_ACOUSTID_API_KEY" type="password" />

<BaseButton @click="setApiKey('SERVICE_ACOUSTID_API_KEY')">
{{ t('button.set') }}
Expand All @@ -60,7 +60,7 @@ async function setApiKey(key: EnvKey) {
</BaseLabel>

<div class="min-w-400px flex gap-x-3">
<BaseTextArea id="SERVICE_SHAZAM_API_KEY" v-model="env.SERVICE_SHAZAM_API_KEY" />
<BaseInput id="SERVICE_SHAZAM_API_KEY" v-model="env.SERVICE_SHAZAM_API_KEY" type="password" />

<BaseButton @click="setApiKey('SERVICE_SHAZAM_API_KEY')">
{{ t('button.set') }}
Expand Down

0 comments on commit 3c9d694

Please sign in to comment.