mirror of
https://github.com/mempool/mempool.git
synced 2025-03-03 17:47:01 +01:00
Revert "Support uppercase addresses when searching."
This reverts commit fc28b06a0f
.
This commit is contained in:
parent
ec12f21113
commit
79ef8ca371
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ export class SearchFormComponent implements OnInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
search() {
|
search() {
|
||||||
const searchText = this.searchForm.get('searchText').value.trim().toLowerCase();
|
const searchText = this.searchForm.value.searchText.trim();
|
||||||
if (searchText) {
|
if (searchText) {
|
||||||
this.isSearching = true;
|
this.isSearching = true;
|
||||||
if (this.regexAddress.test(searchText)) {
|
if (this.regexAddress.test(searchText)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue