8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62956dc commit 09d51a8Copy full SHA for 09d51a8
js/ethplorer.js
@@ -1053,7 +1053,7 @@ Ethplorer = {
1053
showFilter: function(data){
1054
var activeTab = Ethplorer.getActiveTab();
1055
if(activeTab && data.pager && data.pager[activeTab]){
1056
- if(data.pager[activeTab].records > 100000 || (data.token && data.token.txsCount && data.token.txsCount > 100000)){
+ if(data.pager[activeTab].records > 100000 || ((activeTab == 'transfers') && (data.token && data.token.txsCount && data.token.txsCount > 100000))){
1057
$('#filter_list').hide();
1058
}else{
1059
if(Ethplorer.showTx && data.token){
0 commit comments