diff options
author | Giteabot <teabot@gitea.io> | 2024-03-13 16:02:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-13 09:02:00 +0100 |
commit | 462ae88fc2e6295a9376855627ad2a824a6c8f1d (patch) | |
tree | 791326966bc6f207898bccdd9154ee96ce241a20 /web_src | |
parent | 1e4d5a55945ed81173d0ba85c58a89d6883ea060 (diff) | |
download | gitea-462ae88fc2e6295a9376855627ad2a824a6c8f1d.tar.gz gitea-462ae88fc2e6295a9376855627ad2a824a6c8f1d.zip |
Suppress error from monaco-editor (#29684) (#29758)
Backport #29684 by @silverwind
Fixes: https://github.com/go-gitea/gitea/issues/29414
I see no way for us to catch this error, so downgrade it until
https://github.com/microsoft/monaco-editor/issues/4325 is fixed, which
will likely take a few weeks to propagate up from vscode.
The entries in `updates.config.js` will make
[`updates`](https://github.com/silverwind/updates) not upgrade these
anymore and I think it's good documentation as well to have the reasons
why we don't upgrade these dependencies.
Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/js/bootstrap.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/web_src/js/bootstrap.js b/web_src/js/bootstrap.js index c0047b0ac2..698d17fa36 100644 --- a/web_src/js/bootstrap.js +++ b/web_src/js/bootstrap.js @@ -6,10 +6,18 @@ // This file must be imported before any lazy-loading is being attempted. __webpack_public_path__ = `${window.config?.assetUrlPrefix ?? '/assets'}/`; +const filteredErrors = new Set([ + 'getModifierState is not a function', // https://github.com/microsoft/monaco-editor/issues/4325 +]); + export function showGlobalErrorMessage(msg) { const pageContent = document.querySelector('.page-content'); if (!pageContent) return; + for (const filteredError of filteredErrors) { + if (msg.includes(filteredError)) return; + } + // compact the message to a data attribute to avoid too many duplicated messages const msgCompact = msg.replace(/\W/g, '').trim(); let msgDiv = pageContent.querySelector(`.js-global-error[data-global-error-msg-compact="${msgCompact}"]`); |