Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (nextProps.editing) {
  2.   // we are already editing this record, no need to send a request
  3.   nextProps.recordStartWorkSuccessAction(record);
  4. } else {
  5.   nextProps.startRecordPreview(record);
  6. }
  7.  
  8. this.pdf = new Pdf({
  9.   url: RecordsService.getPdfDownloadUrl(nextProps.id),
  10.   meta: record.meta,
  11. });
  12. this.pdf.previewMeta = true;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement