Skip to content
This repository was archived by the owner on Feb 5, 2022. It is now read-only.

Commit 5642ea0

Browse files
authored
Merge pull request #408 from openforge/fix/labels
fix: add missing labels
2 parents c0eb100 + fcdc374 commit 5642ea0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/pages/app-blog/app-blog.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,10 @@ export class AppBlog {
353353
{this.displaySearchBar ? (
354354
<div class="searchbar-top">
355355
<div class="blog-search-group">
356-
<span class="blog-search-icon-top fa fa-search" />
357-
<input id="blog-search" type="text" class="blog-search-input-top" placeholder="Search the blog" onKeyUp={e => this.handleSearch(e.target['value'])} />
356+
<span class="blog-search-icon">
357+
<span class="fa fa-search" />
358+
</span>
359+
<input id="blog-search" type="search" class="blog-search-input" placeholder="Search the blog" aria-label="search" onKeyUp={e => this.handleSearch(e.target['value'])} />
358360
</div>
359361
<button onClick={() => this.hideSearchBar()}>
360362
<i class="far fa-times-circle" />
@@ -440,7 +442,7 @@ export class AppBlog {
440442
>
441443
<label class="d-none d-md-block">Sign Up for News &amp; Updates</label>
442444
<div class="form-group">
443-
<input type="email" value="" name="EMAIL" class="email d-none d-md-block" id="mce-EMAIL" placeholder="Email Address" required={true} />
445+
<input type="email" value="" name="EMAIL" class="email d-none d-md-block" id="mce-EMAIL" placeholder="Email Address" aria-label="email" required={true} />
444446
<div class="hidden" aria-hidden="true">
445447
<input type="text" name="b_7e95d70b390d0adf7aaa31ad6_78738bfcb4" tabindex="-1" value="" />
446448
</div>

0 commit comments

Comments
 (0)