Skip to content

Commit

Permalink
Merge pull request #406 from codenvy/IDEX-3359
Browse files Browse the repository at this point in the history
IDEX-3359: Fix showing recipes list when user nothing typed
  • Loading branch information
AndrienkoAleksandr committed Nov 11, 2015
2 parents f6a1310 + 328383c commit ac507bf
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,9 @@ private void tagsChangedAction() {

tagsError.setVisible(!tag.isEmpty());

delegate.onTagsChanged(hidePopupCallBack);
if (!tag.isEmpty()) {
delegate.onTagsChanged(hidePopupCallBack);
}

isPredefinedRecipe = false;
}
Expand Down

0 comments on commit ac507bf

Please sign in to comment.