This repository was archived by the owner on Oct 23, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed
react/src/components/Auth/interfaces
solid/src/components/Auth/interfaces
svelte/src/lib/Auth/interfaces Expand file tree Collapse file tree 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({
4141 < Input
4242 id = "password"
4343 name = "password"
44- placeholder = { labels ?. password_label }
44+ placeholder = { labels ?. password_input_placeholder }
4545 type = "password"
4646 autoFocus
4747 onChange = { ( e : React . ChangeEvent < HTMLInputElement > ) =>
Original file line number Diff line number Diff line change @@ -47,7 +47,9 @@ function UpdatePassword(props: {
4747 id = "password"
4848 name = "password"
4949 autofocus
50- placeholder = { props . i18n ?. update_password ?. password_label }
50+ placeholder = {
51+ props . i18n ?. update_password ?. password_input_placeholder
52+ }
5153 type = "password"
5254 onkeyup = { ( e ) => setPassword ( e . currentTarget . value ) }
5355 appearance = { props . appearance }
Original file line number Diff line number Diff line change 4545 type =" password"
4646 name =" password"
4747 autofocus
48- placeholder ={i18n ?.update_password ?.password_label }
48+ placeholder ={i18n ?.update_password ?.password_input_placeholder }
4949 bind:value ={password }
5050 autocomplete =" password"
5151 {appearance }
5252 />
5353 </div >
5454 <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 }
5658 </Button >
5759 </Container >
5860
You can’t perform that action at this time.
0 commit comments