diff options
author | Xinyu Zhou <i@sourcehut.net> | 2022-11-09 18:02:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-09 18:02:19 +0800 |
commit | dd7f1c0334dff5fb5eb93765dff3b951a9f6b3fc (patch) | |
tree | 7e44eb736c9de3089445a292b9fa17dc07180d8b /web_src/js/bootstrap.js | |
parent | 7e40ceee9e90bd2cab0339f4301c476040d7121b (diff) | |
download | gitea-dd7f1c0334dff5fb5eb93765dff3b951a9f6b3fc.tar.gz gitea-dd7f1c0334dff5fb5eb93765dff3b951a9f6b3fc.zip |
Quick fixes monaco-editor error: "vs.editor.nullLanguage" (#21734)
fixes: https://github.com/go-gitea/gitea/issues/21733
Uncaught Error: Language id "vs.editor.nullLanguage" is not configured
nor known
Note that this monaco-editor worked fine on 0.33.0 and broke on 0.34.0.
If upstream fixed, remove this code.
Signed-off-by: Xinyu Zhou <i@sourcehut.net>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'web_src/js/bootstrap.js')
-rw-r--r-- | web_src/js/bootstrap.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/web_src/js/bootstrap.js b/web_src/js/bootstrap.js index b5db398545..54b7c62887 100644 --- a/web_src/js/bootstrap.js +++ b/web_src/js/bootstrap.js @@ -26,9 +26,6 @@ function processWindowErrorEvent(e) { 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.`); } |