[0.7.0] Bug with asynchronous loading of issues and filtering by title

Issue #2 resolved
Marek Parfianowicz created an issue

If you start typing letters in a filter while list of issues is being still loaded, it does not filter them correctly.

Workaround: just wait a moment until list is loaded.

Comments (4)

  1. Marek Parfianowicz reporter

    The bug does not occur anymore. In main.js we have:

    collection.fetch({
                success: function(){
                    filterView.enableFiltering();
                    spinStop();
                    collectionView.render();
                }
            });
    

    By default any keyboard input is blocked in the text field until the filterView.enableFiltering() is called.

  2. Log in to comment