We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d7c3af commit 68c418cCopy full SHA for 68c418c
src/Exceptionless.Web/ClientApp/src/lib/features/events/persistent-event.ts
@@ -27,7 +27,7 @@ export function getErrorData(event: PersistentEvent): ErrorData[] {
27
return;
28
}
29
30
- const additionalData = error.data['@ext'] || {};
+ const additionalData = { ...error.data['@ext'] };
31
Object.entries(error.data).forEach(([key, value]) => {
32
if (!key.startsWith('@')) {
33
additionalData[key] = value;
0 commit comments