Load the latest project files when retrieving project information

This commit is contained in:
Kazuhito Yokoi 2024-04-29 16:02:56 +09:00
parent bf0ca38350
commit 361391ceb8

View File

@ -242,7 +242,9 @@ function loadProject(name) {
function getProject(user, name) {
checkActiveProject(name);
return loadProject(name).then(function () {
return Promise.resolve(activeProject.export());
});
}
function deleteProject(user, name) {