mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Fix bubbling multiple levels
This commit is contained in:
parent
ee3fe71c2c
commit
9c427fe8a9
@ -450,7 +450,9 @@ export class Instrumenter {
|
|||||||
|
|
||||||
// Exceptions inside callbacks should bubble up to the parent call.
|
// Exceptions inside callbacks should bubble up to the parent call.
|
||||||
if (call.ancestors.length) {
|
if (call.ancestors.length) {
|
||||||
Object.defineProperty(e, 'callId', { value: call.id });
|
if (!Object.prototype.hasOwnProperty.call(e, 'callId')) {
|
||||||
|
Object.defineProperty(e, 'callId', { value: call.id });
|
||||||
|
}
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user