mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Show the error view, even when the pdf is in an error state.
This commit is contained in:
parent
c980382196
commit
a704289099
1 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ div.full-size.pdf(ng-controller="PdfController")
|
||||||
a.log-btn(
|
a.log-btn(
|
||||||
href
|
href
|
||||||
ng-click="toggleLogs()"
|
ng-click="toggleLogs()"
|
||||||
ng-class="{ 'active': (pdf.view == 'logs' || pdf.failure) && !pdf.error && !pdf.timeout && !pdf.uncompiled }"
|
ng-class="{ 'active': (pdf.view == 'logs' || pdf.failure) && !pdf.timeout && !pdf.uncompiled }"
|
||||||
tooltip="#{translate('logs_and_output_files')}"
|
tooltip="#{translate('logs_and_output_files')}"
|
||||||
tooltip-placement="bottom"
|
tooltip-placement="bottom"
|
||||||
)
|
)
|
||||||
|
@ -162,7 +162,7 @@ div.full-size.pdf(ng-controller="PdfController")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.pdf-logs(ng-show="(pdf.view == 'logs' || pdf.failure) && !pdf.error && !pdf.timeout && !pdf.uncompiled")
|
.pdf-logs(ng-show="(pdf.view == 'logs' || pdf.failure) && !pdf.timeout && !pdf.uncompiled")
|
||||||
.alert.alert-success(ng-show="pdf.logEntries.all.length == 0")
|
.alert.alert-success(ng-show="pdf.logEntries.all.length == 0")
|
||||||
| #{translate("no_errors_good_job")}
|
| #{translate("no_errors_good_job")}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue