mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #1607 from sharelatex/spd-succserror
Don't show 'No errors' message if PDF generation fails GitOrigin-RevId: 7ed454b489dcef419c51f48b6c5b3920d5558a79
This commit is contained in:
parent
970ca2e122
commit
1edf1964c8
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ div.full-size.pdf(ng-controller="PdfController")
|
||||||
|
|
||||||
// logs view
|
// logs view
|
||||||
.pdf-logs(ng-show="shouldShowLogs")
|
.pdf-logs(ng-show="shouldShowLogs")
|
||||||
.alert.alert-success(ng-show="pdf.logEntries.all.length == 0")
|
.alert.alert-success(ng-show="pdf.logEntries.all.length == 0 && !pdf.failure")
|
||||||
| #{translate("no_errors_good_job")}
|
| #{translate("no_errors_good_job")}
|
||||||
|
|
||||||
.alert.alert-danger(ng-show="pdf.failure")
|
.alert.alert-danger(ng-show="pdf.failure")
|
||||||
|
|
Loading…
Reference in a new issue