Skip to content

Commit

Permalink
Fix chrome reported issue: A form field element has neither an id nor…
Browse files Browse the repository at this point in the history
… a name attribute.
  • Loading branch information
Eric-Guo authored and oliverguenther committed Mar 27, 2024
1 parent 9a2bcf3 commit c14b9c6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -18,7 +18,7 @@
class="global-search"
[placeholder]="placeholder"
[classes]="{'top-menu-search--input': true, '-markable': markable, '-expanded': expanded }"
[inputAttrs]="{ 'class': 'global-search--input' }"
[inputAttrs]="{ 'class': 'global-search--input', 'name': 'global-search--input' }"
[openOnEnter]="true"
[labelRequired]="false"
[focusDirectly]="isFocusedDirectly"
Expand Down

0 comments on commit c14b9c6

Please sign in to comment.