Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 713b98a

Browse files
author
samsep
committed
build
1 parent 98335a2 commit 713b98a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dist/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ $templateCache.put("views/submit-work-complete.directive.html","<modal show=\"vm
223223
vm.create = function() {
224224
var promise, updates;
225225
updates = getUpdates();
226-
updates.status = 'Incomplete';
226+
updates.status = 'INCOMPLETE';
227227
if (isValid(updates)) {
228228
vm.loading = true;
229229
promise = SubmitWorkService.create(updates);
@@ -357,7 +357,7 @@ $templateCache.put("views/submit-work-complete.directive.html","<modal show=\"vm
357357
kickoff = false;
358358
}
359359
updates = getUpdates();
360-
updates.status = kickoff ? 'Submitted' : 'Incomplete';
360+
updates.status = kickoff ? 'SUBMITTED' : 'INCOMPLETE';
361361
return SubmitWorkService.save(updates).then(function() {
362362
if (done && kickoff) {
363363
return $state.go('submit-work-complete', {
@@ -736,7 +736,7 @@ $templateCache.put("views/submit-work-complete.directive.html","<modal show=\"vm
736736
}
737737
uploaderValid = !vm.uploaderUploading && !vm.uploaderHasErrors;
738738
updates = vm.work;
739-
updates.status = kickoff ? 'Submitted' : 'Incomplete';
739+
updates.status = kickoff ? 'SUBMITTED' : 'INCOMPLETE';
740740
for (name in updates) {
741741
prop = updates[name];
742742
if (!prop) {

0 commit comments

Comments
 (0)