We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8b4f14 commit f27a88aCopy full SHA for f27a88a
src/drive.ts
@@ -160,7 +160,7 @@ export class FileSystemDrive implements Contents.IDrive {
160
parentPath,
161
type === 'directory' ? 'Untitled Folder' : 'untitled'
162
);
163
- const ext = options?.ext || 'txt';
+ const ext = type === 'notebook' ? 'ipynb' : options?.ext || 'txt';
164
165
const parentHandle = await this.getParentHandle(path);
166
0 commit comments