소스 검색

File filter on top of breadcrumbs

Eric Charles 4 년 전
부모
커밋
9bd028a890
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/filebrowser/src/browser.ts

+ 2 - 2
packages/filebrowser/src/browser.ts

@@ -110,13 +110,13 @@ export class FileBrowser extends Widget {
 
     this._crumbs.addClass(CRUMBS_CLASS);
     this.toolbar.addClass(TOOLBAR_CLASS);
-    this._listing.addClass(LISTING_CLASS);
     this._filenameSearcher.addClass(FILTERBOX_CLASS);
+    this._listing.addClass(LISTING_CLASS);
 
     this.layout = new PanelLayout();
     this.layout.addWidget(this.toolbar);
-    this.layout.addWidget(this._crumbs);
     this.layout.addWidget(this._filenameSearcher);
+    this.layout.addWidget(this._crumbs);
     this.layout.addWidget(this._listing);
 
     if (options.restore !== false) {