File tree 4 files changed +15
-4
lines changed
react/src/components/Auth/interfaces
solid/src/components/Auth/interfaces
svelte/src/lib/Auth/interfaces
4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @supabase/auth-ui-svelte ' : patch
3
+ ' @supabase/auth-ui-react ' : patch
4
+ ' @supabase/auth-ui-solid ' : patch
5
+ ---
6
+
7
+ fix: update password placeholder prop
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ function UpdatePassword({
41
41
< Input
42
42
id = "password"
43
43
name = "password"
44
- placeholder = { labels ?. password_label }
44
+ placeholder = { labels ?. password_input_placeholder }
45
45
type = "password"
46
46
autoFocus
47
47
onChange = { ( e : React . ChangeEvent < HTMLInputElement > ) =>
Original file line number Diff line number Diff line change @@ -47,7 +47,9 @@ function UpdatePassword(props: {
47
47
id = "password"
48
48
name = "password"
49
49
autofocus
50
- placeholder = { props . i18n ?. update_password ?. password_label }
50
+ placeholder = {
51
+ props . i18n ?. update_password ?. password_input_placeholder
52
+ }
51
53
type = "password"
52
54
onkeyup = { ( e ) => setPassword ( e . currentTarget . value ) }
53
55
appearance = { props . appearance }
Original file line number Diff line number Diff line change 45
45
type =" password"
46
46
name =" password"
47
47
autofocus
48
- placeholder ={i18n ?.update_password ?.password_label }
48
+ placeholder ={i18n ?.update_password ?.password_input_placeholder }
49
49
bind:value ={password }
50
50
autocomplete =" password"
51
51
{appearance }
52
52
/>
53
53
</div >
54
54
<Button type ="submit" color ="primary" {loading } {appearance }>
55
- {loading ? i18n ?.update_password ?.loading_button_label : i18n ?.update_password ?.button_label }
55
+ {loading
56
+ ? i18n ?.update_password ?.loading_button_label
57
+ : i18n ?.update_password ?.button_label }
56
58
</Button >
57
59
</Container >
58
60
You can’t perform that action at this time.
0 commit comments