Browse Source

Fix the text file creator

Steven Silvester 8 years ago
parent
commit
751e03760d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/docregistry/plugin.ts

+ 1 - 1
src/docregistry/plugin.ts

@@ -29,7 +29,7 @@ const docRegistryProvider: JupyterLabPlugin<IDocumentRegistry> = {
     });
     registry.addCreator({
       name: 'Text File',
-      fileType: 'file',
+      fileType: 'Text',
     });
     return registry;
   }