mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Order errors by severity. error -> warning -> typsetting
This commit is contained in:
parent
116458671c
commit
c273f36bb0
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ define [
|
|||
logButtonHtml = "Logs"
|
||||
|
||||
if compileErrors?
|
||||
for error in compileErrors.all
|
||||
for error in compileErrors.errors.concat(compileErrors.warnings).concat(compileErrors.typesetting)
|
||||
errorView = new LatexErrorView(@options.manager.ide, error)
|
||||
errorView.render()
|
||||
@errorViews.push(errorView)
|
||||
|
|
Loading…
Reference in a new issue