diff --git a/resources/assets/js/snipeit.js b/resources/assets/js/snipeit.js index 91fbfbe22..a7f3f2668 100755 --- a/resources/assets/js/snipeit.js +++ b/resources/assets/js/snipeit.js @@ -296,11 +296,11 @@ $(document).ready(function () { }); // makes sure we're not selecting the same thing twice for multiples - var filteredResponse = response.items.filter(function(item) { + var filteredResponse = response.results.filter(function(item) { return currentlySelected.indexOf(+item.id) < 0; }); - var first = (currentlySelected.length > 0) ? filteredResponse[0] : response.items[0]; + var first = (currentlySelected.length > 0) ? filteredResponse[0] : response.results[0]; if(first && first.id) { first.selected = true; @@ -558,4 +558,4 @@ $(document).ready(function () { }); }; -})(jQuery); \ No newline at end of file +})(jQuery);