Also emit story id in story rendered event.

This commit is contained in:
Gytis Vinclovas 2019-07-18 21:15:37 +03:00
parent f455ee1c84
commit a7e4967e1f

View File

@ -31,7 +31,7 @@ export default class StoryView extends Component<Props> {
const { storyId } = stories.getSelection();
if (storyId) {
channel.emit(Events.STORY_RENDERED);
channel.emit(Events.STORY_RENDERED, { storyId });
}
}