forked from forgejo/forgejo
Fix mermaid-related bugs (#21431)
This commit is contained in:
parent
8e8b536c29
commit
32159cc4a3
2 changed files with 5 additions and 1 deletions
4
web_src/js/bootstrap.js
vendored
4
web_src/js/bootstrap.js
vendored
|
@ -25,6 +25,10 @@ function processWindowErrorEvent(e) {
|
|||
// If a script inserts a newly created (and content changed) element into DOM, there will be a nonsense error event reporting: Script error: line 0, col 0.
|
||||
return; // ignore such nonsense error event
|
||||
}
|
||||
|
||||
// Wait for upstream fix: https://github.com/microsoft/monaco-editor/issues/2962
|
||||
if (e.message.includes('Language id "vs.editor.nullLanguage" is not configured nor known')) return;
|
||||
|
||||
showGlobalErrorMessage(`JavaScript error: ${e.message} (${e.filename} @ ${e.lineno}:${e.colno}). Open browser console to see more details.`);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue