Puca-Power icon indicating copy to clipboard operation
Puca-Power copied to clipboard

Feature request - filter cards worth more than x

Open ckschu opened this issue 8 years ago • 1 comments

Hi, right now there is an option to filter out small cards. I would appreciate a way to filter out expensive cards as well so I can send out bulk. Thanks for your work.

ckschu avatar Apr 18 '16 02:04 ckschu

I'd also like this feature. In the meantime, entering this in the console will, at least in Chrome, hide all rows for cards above 700 points:

$("td.value").each(function(x, y) { if (parseInt($(y).text()) > 700) { $(y).parent().hide();}})

Reloading the page will show them again, or you can do this:

$("td.value").each(function(x, y) { if (parseInt($(y).text()) > 700) { $(y).parent().show();}})

tadhg-ohiggins avatar Jul 21 '16 06:07 tadhg-ohiggins