Merge pull request #2498 from aignatov-bio/ai-sci-4481-fix-notification-when-search-field-active

Fix notification when search field active [SCI-4481]
This commit is contained in:
aignatov-bio 2020-05-05 12:59:32 +02:00 committed by GitHub
commit 85dae268fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,6 +47,7 @@ var DasboardCurrentTasksWidget = (function() {
function filtersEnabled() {
return dropdownSelector.getValues(experimentFilter)
|| dropdownSelector.getValues(projectFilter)
|| $('.current-tasks-widget .task-search-field').val().length > 0
|| dropdownSelector.getValues(viewFilter) !== 'uncompleted';
}