We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
passwordinput
1 parent ed4cf38 commit 0ee5a3cCopy full SHA for 0ee5a3c
src/components/Secrets.vue
@@ -1,5 +1,5 @@
1
<script setup lang="ts">
2
-import { Input } from '@/components/ui/input'
+import { PasswordInput } from '@/components/ui/input'
3
import { Button } from '@/components/ui/button'
4
import {
5
Card,
@@ -38,14 +38,14 @@ const redirectLink = window.location.origin
38
<div class="flex flex-col gap-4">
39
<div class="form-item">
40
<span class="whitespace-nowrap">Client id</span>
41
- <Input
+ <PasswordInput
42
v-model="clientId"
43
type="password"
44
/>
45
</div>
46
47
<span class="whitespace-nowrap">Client secret</span>
48
49
v-model="clientSecret"
50
51
0 commit comments