Skip to content

Commit 62956dc

Browse files
committed
Hide filter for big txs list.
1 parent 62e1141 commit 62956dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/ethplorer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ Ethplorer = {
10531053
showFilter: function(data){
10541054
var activeTab = Ethplorer.getActiveTab();
10551055
if(activeTab && data.pager && data.pager[activeTab]){
1056-
if(data.pager[activeTab].records > 100000){
1056+
if(data.pager[activeTab].records > 100000 || (data.token && data.token.txsCount && data.token.txsCount > 100000)){
10571057
$('#filter_list').hide();
10581058
}else{
10591059
if(Ethplorer.showTx && data.token){

0 commit comments

Comments
 (0)