This repository was archived by the owner on Mar 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ $templateCache.put("views/submit-work-complete.directive.html","<modal show=\"vm
223
223
vm . create = function ( ) {
224
224
var promise , updates ;
225
225
updates = getUpdates ( ) ;
226
- updates . status = 'Incomplete ' ;
226
+ updates . status = 'INCOMPLETE ' ;
227
227
if ( isValid ( updates ) ) {
228
228
vm . loading = true ;
229
229
promise = SubmitWorkService . create ( updates ) ;
@@ -357,7 +357,7 @@ $templateCache.put("views/submit-work-complete.directive.html","<modal show=\"vm
357
357
kickoff = false ;
358
358
}
359
359
updates = getUpdates ( ) ;
360
- updates . status = kickoff ? 'Submitted ' : 'Incomplete ' ;
360
+ updates . status = kickoff ? 'SUBMITTED ' : 'INCOMPLETE ' ;
361
361
return SubmitWorkService . save ( updates ) . then ( function ( ) {
362
362
if ( done && kickoff ) {
363
363
return $state . go ( 'submit-work-complete' , {
@@ -736,7 +736,7 @@ $templateCache.put("views/submit-work-complete.directive.html","<modal show=\"vm
736
736
}
737
737
uploaderValid = ! vm . uploaderUploading && ! vm . uploaderHasErrors ;
738
738
updates = vm . work ;
739
- updates . status = kickoff ? 'Submitted ' : 'Incomplete ' ;
739
+ updates . status = kickoff ? 'SUBMITTED ' : 'INCOMPLETE ' ;
740
740
for ( name in updates ) {
741
741
prop = updates [ name ] ;
742
742
if ( ! prop ) {
You can’t perform that action at this time.
0 commit comments