mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
FIX preview accepting events from any source
This commit is contained in:
parent
d3c93ccc73
commit
136d184ccb
@ -170,10 +170,11 @@ export class PostmsgTransport {
|
||||
? `<span style="color: #FF4785">${event.type}</span>`
|
||||
: `<span style="color: #FFAE00">${event.type}</span>`;
|
||||
|
||||
event.source = source || getEventSourceUrl(rawEvent);
|
||||
event.source =
|
||||
source || this.config.page === 'preview' ? event.origin : getEventSourceUrl(rawEvent);
|
||||
|
||||
if (!event.source) {
|
||||
logger.error(
|
||||
pretty.error(
|
||||
`${pageString} received ${eventString} but was unable to determine the source of the event`
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user