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 (@5-tom) (#42034)

Co-authored-by: 5-tom <132141431+5-tom@users.noreply.github.com>
Co-authored-by: ZeeshanTamboli <zeeshan.tamboli@gmail.com>
  • Loading branch information
3 people committed Apr 27, 2024
1 parent 84e8131 commit b58aa47
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 b58aa47

Please sign in to comment.