We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7137d73 commit 53a51f0Copy full SHA for 53a51f0
lib/project-data.ts
@@ -80,6 +80,7 @@ export class ProjectData implements IProjectData {
80
let newProjectData = this.$fs.exists(newProjectFilePath).wait() ? this.$fs.readJson(newProjectFilePath).wait() : {};
81
newProjectData[this.$staticConfig.CLIENT_NAME_KEY_IN_PROJECT_FILE] = oldProjectData;
82
this.$fs.writeJson(newProjectFilePath, newProjectData).wait();
83
+ this.projectId = newProjectData[this.$staticConfig.CLIENT_NAME_KEY_IN_PROJECT_FILE].id;
84
85
this.$fs.deleteFile(oldProjectFilePath).wait();
86
} catch(err) {
0 commit comments