mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:11:23 +08:00
RENAME isInjected to initialState startInjected, state is preserved in preview itself
This commit is contained in:
parent
115e3d01d5
commit
845c1db058
@ -27,7 +27,7 @@ export interface InceptionRef {
|
||||
url: string;
|
||||
}
|
||||
export interface RefState {
|
||||
isInjected: boolean;
|
||||
startInjected: boolean;
|
||||
}
|
||||
|
||||
export type RefId = string;
|
||||
@ -113,7 +113,7 @@ const initRefsApi = ({ store, provider }: Module) => {
|
||||
store.setState({
|
||||
refs: {
|
||||
...(store.getState().refs || {}),
|
||||
[id]: { id, url, data: after, isInjected: true },
|
||||
[id]: { id, url, data: after, startInjected: true },
|
||||
},
|
||||
});
|
||||
};
|
||||
@ -125,7 +125,7 @@ const initRefsApi = ({ store, provider }: Module) => {
|
||||
id: key,
|
||||
url: value,
|
||||
data: {},
|
||||
isInjected: true,
|
||||
startInjected: true,
|
||||
},
|
||||
}),
|
||||
{} as SubState['refs']
|
||||
|
Loading…
x
Reference in New Issue
Block a user