Skip to content

Commit 0ee5a3c

Browse files
committed
feat: use passwordinput component for clientid, clientsecret
1 parent ed4cf38 commit 0ee5a3c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/Secrets.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { Input } from '@/components/ui/input'
2+
import { PasswordInput } from '@/components/ui/input'
33
import { Button } from '@/components/ui/button'
44
import {
55
Card,
@@ -38,14 +38,14 @@ const redirectLink = window.location.origin
3838
<div class="flex flex-col gap-4">
3939
<div class="form-item">
4040
<span class="whitespace-nowrap">Client id</span>
41-
<Input
41+
<PasswordInput
4242
v-model="clientId"
4343
type="password"
4444
/>
4545
</div>
4646
<div class="form-item">
4747
<span class="whitespace-nowrap">Client secret</span>
48-
<Input
48+
<PasswordInput
4949
v-model="clientSecret"
5050
type="password"
5151
/>

0 commit comments

Comments
 (0)