We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dedfdd commit 2576f76Copy full SHA for 2576f76
lib/services/project-data-service.ts
@@ -72,9 +72,9 @@ export class ProjectDataService implements IProjectDataService {
72
73
// Detect indent and use it later to write JSON.
74
let projectFileContent = this.$fs.readText(this.projectFilePath).wait();
75
-
+
76
this.projectFileIndent = projectFileContent ? this.detectIndent(projectFileContent) : "\t";
77
78
this.projectData = projectFileContent ? JSON.parse(projectFileContent) : Object.create(null);
79
80
}).future<void>()();
0 commit comments