mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-11 16:24:42 +00:00
Show timedout errors properly
This commit is contained in:
parent
bb55d8f406
commit
ce47f75058
1 changed files with 2 additions and 2 deletions
|
@ -69,12 +69,12 @@ div.full-size.pdf(ng-controller="PdfController")
|
|||
i.fa.fa-level-up.fa-flip-horizontal.fa-2x
|
||||
| Click here to preview your work as a PDF.
|
||||
|
||||
.pdf-errors(ng-show="pdf.timeout || pdf.error")
|
||||
.pdf-errors(ng-show="pdf.timedout || pdf.error")
|
||||
.alert.alert-danger(ng-show="pdf.error")
|
||||
strong Server Error.
|
||||
span Sorry, something went wrong and your project could not be compiled. Please try again in a few moments.
|
||||
|
||||
.alert.alert-danger(ng-show="pdf.timeout")
|
||||
.alert.alert-danger(ng-show="pdf.timedout")
|
||||
strong Timed out.
|
||||
span Sorry, your compile was taking too long and timed out.
|
||||
| This may be due to a large number of high-res images, or lots of complicated diagrams.
|
||||
|
|
Loading…
Reference in a new issue