diff --git a/web/js/index.js b/web/js/index.js index 57c82c5..e7d04a7 100644 --- a/web/js/index.js +++ b/web/js/index.js @@ -171,6 +171,8 @@ Ractive.DEBUG = false; //statuses if (project.stage != "waiting") { project.status = project.stage; + } else if(!project.lastLog) { + project.status = "waiting"; } else if (project.lastLog.version.trim() == project.releaseVersion.trim()) { project.status = "Successfully Released"; } else {