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:
Nick Clemens 2019-06-07 10:14:36 +00:00 committed by Martin Renvoize
parent 545f38d13c
commit f927d80112
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -95,7 +95,8 @@ define( [ 'marc-record' ], function( MARC ) {
}
} );
return errors.length ? { errors: errors } : record;
if( errors.length ) { record.errors = errors; }
return record;
}
};
} );