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

Commit 0f94dc1

Browse files
committed
refactor(blog): remove unused logs
1 parent f28decd commit 0f94dc1

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

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

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -331,25 +331,21 @@ export class AppBlog {
331331
postData = this.renderPosts(this.blogPostsData, this.blogIsLoading, this.blogIsError, '', this.blogFilter);
332332
}
333333

334-
console.log(this.searchQuery);
335-
console.log(this.blogCurrentPage);
336-
console.log(this.blogFilter);
337-
338334
return (
339335
<div class="blog-container container">
340336
<div id="blog-filters" class="blog-filters">
341337
<div class="blog-filters-nav">
342338
<div class="blog-search-group d-md-none">
343339
<span class="blog-search-icon fa fa-search" />
344-
<input id="blog-search" type="search" class="blog-search-input" placeholder="Search the blog" onKeyUp={e => this.handleSearch(e.target['value'])} />
340+
<input id="blog-search" type="text" class="blog-search-input" placeholder="Search the blog" onKeyUp={e => this.handleSearch(e.target['value'])} />
345341
</div>
346342

347343
<ul class="blog-filters-list">
348344
{filters}
349345
<li class="blog-filter-item d-none d-md-block">
350346
<div class="blog-search-group">
351347
<span class="blog-search-icon fa fa-search" />
352-
<input id="blog-search" type="search" class="blog-search-input" placeholder="Search the blog" onKeyUp={e => this.handleSearch(e.target['value'])} />
348+
<input id="blog-search" type="text" class="blog-search-input" placeholder="Search the blog" onKeyUp={e => this.handleSearch(e.target['value'])} />
353349
</div>
354350
</li>
355351
</ul>

0 commit comments

Comments
 (0)