We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae8e728 commit 8452c3cCopy full SHA for 8452c3c
src/module.tsx
@@ -26,7 +26,11 @@ const App = lazy(async () => {
26
initRuntimeDs();
27
28
if (wasmSupported()) {
29
- await Promise.all([initChangepoint(), initOutlier()]);
+ try {
30
+ await Promise.all([initChangepoint(), initOutlier()]);
31
+ } catch (e) {
32
+ console.warn('grafana-lokiexplore-app: WebAssembly init failed, ML sorting disabled.', e);
33
+ }
34
}
35
36
return import('Components/App');
0 commit comments