feat(editor): Upgrade @sentry/vue to address GHSA-593m-55hh-j8gv (no-changelog) (#11169)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-10-08 18:10:19 +02:00
committed by GitHub
parent af4f4a089d
commit 94cfb3727c
6 changed files with 66 additions and 64 deletions

View File

@@ -29,6 +29,7 @@ import {
} from '@/utils/nodeTypesUtils';
import { get, set } from 'lodash-es';
import { useRouter } from 'vue-router';
import { captureException } from '@sentry/vue';
const LazyFixedCollectionParameter = defineAsyncComponent(
async () => await import('./FixedCollectionParameter.vue'),
@@ -73,7 +74,7 @@ onErrorCaptured((e, component) => {
}
asyncLoadingError.value = true;
console.error(e);
window?.Sentry?.captureException(e, {
captureException(e, {
tags: {
asyncLoadingError: true,
},