diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index b8a2bb665..05821c5b7 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -26,6 +26,8 @@ - **Transition** - Fixes `swing out` animations not working correctly - **Transition** - Fixed display state other than `block` not determined when using `show` and `hide` without an animation - **Transition** - Fix bug in `remove looping` causing next animation to use same duration +- **Search** - Fix a bug with `onSelect` returning `null` when `minCharacters: 0` +- **Search** - Fix a bug with `onSelect returning `null` when results retrieved from cached API query - **Menu** - Fix vertical pointing menu, sub menu arrow color - **Item ** - `img` inside of `ui item content` now do not receive size formatting by default - **Form** - Added `input[type="search"]` styles to `ui form` diff --git a/src/definitions/modules/search.js b/src/definitions/modules/search.js index 58fcfb804..3b8972bf1 100644 --- a/src/definitions/modules/search.js +++ b/src/definitions/modules/search.js @@ -363,7 +363,6 @@ $.fn.search = function(parameters) { module.debug('Reading result for ' + searchTerm + ' from cache'); module.save.results(cache.results); module.addResults(cache.html); - } else { module.debug('Querying for ' + searchTerm);