소스 검색

Fix up arrow error when there is no options

rodrigo.perez 7 년 전
부모
커밋
34e8b695f0
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/js/select2/results.js

+ 2 - 1
src/js/select2/results.js

@@ -340,7 +340,8 @@ define([
       var currentIndex = $options.index($highlighted);
 
       // If we are already at te top, don't move further
-      if (currentIndex === 0) {
+      // If no options, currentIndex will be -1
+      if (currentIndex <= 0) {
         return;
       }