Bug 23045: Return record along with errors
We don't seem to directly handle the errors in most cases, let's always return the record To test: 1 - Add some blank lines to editor, previous patch is okay with this 2 - Add a line with just 'e' or some other incomplete field 3 - Try to save 4 - Note JS leader error 5 - Apply this patch 6 - No errors Signed-off-by: Liz Rea <wizzyrea@gmail.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
545f38d13c
commit
f927d80112
1 changed files with 2 additions and 1 deletions
|
@ -95,7 +95,8 @@ define( [ 'marc-record' ], function( MARC ) {
|
|||
}
|
||||
} );
|
||||
|
||||
return errors.length ? { errors: errors } : record;
|
||||
if( errors.length ) { record.errors = errors; }
|
||||
return record;
|
||||
}
|
||||
};
|
||||
} );
|
||||
|
|
Loading…
Reference in a new issue