fix broken name for "new file" in explorer

This commit is contained in:
Benjamin Pasero 2017-11-21 11:28:48 +01:00
parent 61a5ea9cc7
commit 8bfd9d5a48

View file

@ -322,7 +322,7 @@ export class NewStatPlaceholder extends FileStat {
private directoryPlaceholder: boolean;
constructor(isDirectory: boolean, root: FileStat) {
super(URI.file(''), root);
super(URI.file(''), root, false, false, '');
this.id = NewStatPlaceholder.ID++;
this.isDirectoryResolved = isDirectory;