mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #5175 from overleaf/bg-enable-file-line-errors-for-alpha
[web] enable file-line-errors for alpha group GitOrigin-RevId: 95579162410be25d9908b74816d240ec95432463
This commit is contained in:
parent
f8d65a2004
commit
f5fce04e34
1 changed files with 4 additions and 1 deletions
|
@ -283,7 +283,10 @@ App.controller(
|
|||
if (getMeta('ol-enablePdfCaching')) {
|
||||
params.enable_pdf_caching = true
|
||||
}
|
||||
if (window.location.search.includes('file_line_errors=true')) {
|
||||
if (
|
||||
window.user.alphaProgram ||
|
||||
window.location.search.includes('file_line_errors=true')
|
||||
) {
|
||||
params.file_line_errors = 'true'
|
||||
}
|
||||
// if the previous run was a check, clear the error logs
|
||||
|
|
Loading…
Reference in a new issue