-
Notifications
You must be signed in to change notification settings - Fork 15
Fixes #191 : Solves filtering changesets bug #193
base: master
Are you sure you want to change the base?
Conversation
Hi @gabru-md, thanks for fixing this problem! I confirm that your commit does fix it, but I find it a little confusing that you can have an "active filter" while the form gets automatically hidden (you might forget about it, and then wonder why so few changesets are being shown). How about we don't hide the form when it contains a filter value? You can achieve this by making the "auto-hide" mechanism conditional on the form being empty, e.g.:
|
Hi @gabru-md Take care, |
I am sorry for not being able to update this PR for this long. 😅 |
That's perfect, thanks a lot! Also no need to apologise (I'm the one who took 3 weeks to reply 😋) |
Cancel button clears out the filter and calls the onChange function to trigger the event. Cheers!
@armenzg @jankeromnes I've done some changes you can check here. I've added the cancel button that triggers an event causing the changesets to reset to original state. |
Fixes #191
The bug is that when we filter the data and click on the changesets,
then instead of taking to another page as it should do, the filter gets
cleared and all changesets are visible. By removing onBlur from the
attributes this problem is easily solved.
Cheers!
This change is