mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 06:47:52 +01:00
Merge pull request #757 from mempool/wiz/revert-search-input-lowercase-conversion
Revert "Support uppercase addresses when searching."
This commit is contained in:
commit
24d18b9f2f
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ export class SearchFormComponent implements OnInit {
|
|||
}
|
||||
|
||||
search() {
|
||||
const searchText = this.searchForm.get('searchText').value.trim().toLowerCase();
|
||||
const searchText = this.searchForm.value.searchText.trim();
|
||||
if (searchText) {
|
||||
this.isSearching = true;
|
||||
if (this.regexAddress.test(searchText)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue