浏览代码

File browser extension now ignores case.

markhannel 6 年之前
父节点
当前提交
d6fe0456d5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/filebrowser/src/listing.ts

+ 1 - 1
packages/filebrowser/src/listing.ts

@@ -522,7 +522,7 @@ export class DirListing extends Widget {
    * Select the first item that starts with prefix being typed.
    * Select the first item that starts with prefix being typed.
    */
    */
   selectByPrefix(): void {
   selectByPrefix(): void {
-    const prefix = this._searchPrefix;
+    const prefix = this._searchPrefix.toLowerCase();
     let items = this._sortedItems;
     let items = this._sortedItems;
 
 
     let index = ArrayExt.findFirstIndex(items, value => {
     let index = ArrayExt.findFirstIndex(items, value => {