Skip to content

Commit

Permalink
Merge pull request #3274 from ProjectSidewalk/develop
Browse files Browse the repository at this point in the history
v7.15.1
  • Loading branch information
misaugstad authored Jun 22, 2023
2 parents c91bd9e + 392f6e4 commit c3913d4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import play.PlayScala

name := """sidewalk-webpage"""

version := "7.15.0"
version := "7.15.1"

scalaVersion := "2.10.7"

Expand Down
6 changes: 6 additions & 0 deletions conf/evolutions/default/192.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# --- !Ups
UPDATE mission
SET completed = TRUE
WHERE completed = FALSE AND labels_progress = 10 AND labels_validated = 10;

# --- !Downs
5 changes: 5 additions & 0 deletions conf/evolutions/default/193.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# --- !Ups
INSERT INTO version VALUES ('7.15.1', now(), 'Fixes a bug that prevented users from doing a second Validate mission.');

# --- !Downs
DELETE FROM version WHERE version_id = '7.15.1';
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function MissionContainer () {
function completeAMission () {
svv.missionsCompleted += 1;
svv.modalMissionComplete.show(currentMission);
let data = svv.form.compileSubmissionData();
let data = svv.form.compileSubmissionData(true);
svv.form.submit(data, true);
_addToCompletedMissions(currentMission);
}
Expand Down

0 comments on commit c3913d4

Please sign in to comment.