Skip to content

Commit

Permalink
[docs][material-ui][templates] Fix input props attributes in Landing …
Browse files Browse the repository at this point in the history
…Page template (#42013)

Co-authored-by: ZeeshanTamboli <zeeshan.tamboli@gmail.com>
  • Loading branch information
2 people authored and web-flow committed Apr 27, 2024
1 parent 84e8131 commit e8e704b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ export default function Footer() {
aria-label="Enter your email address"
placeholder="Your email address"
inputProps={{
autocomplete: 'off',
ariaLabel: 'Enter your email address',
autoComplete: 'off',
'aria-label': 'Enter your email address',
}}
/>
<Button variant="contained" color="primary" sx={{ flexShrink: 0 }}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ export default function Footer() {
aria-label="Enter your email address"
placeholder="Your email address"
inputProps={{
autocomplete: 'off',
ariaLabel: 'Enter your email address',
autoComplete: 'off',
'aria-label': 'Enter your email address',
}}
/>
<Button variant="contained" color="primary" sx={{ flexShrink: 0 }}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ export default function Hero() {
aria-label="Enter your email address"
placeholder="Your email address"
inputProps={{
autocomplete: 'off',
ariaLabel: 'Enter your email address',
autoComplete: 'off',
'aria-label': 'Enter your email address',
}}
/>
<Button variant="contained" color="primary">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ export default function Hero() {
aria-label="Enter your email address"
placeholder="Your email address"
inputProps={{
autocomplete: 'off',
ariaLabel: 'Enter your email address',
autoComplete: 'off',
'aria-label': 'Enter your email address',
}}
/>
<Button variant="contained" color="primary">
Expand Down

0 comments on commit e8e704b

Please sign in to comment.