mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Fix defaultViewport in @addon-viewport
This commit is contained in:
parent
69af3ae2d3
commit
6c4be45054
@ -133,6 +133,14 @@ export const ViewportTool: FunctionComponent<{}> = React.memo(
|
|||||||
});
|
});
|
||||||
const list = toList(viewports);
|
const list = toList(viewports);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setState({
|
||||||
|
selected:
|
||||||
|
defaultViewport || (viewports[state.selected] ? state.selected : responsiveViewport.id),
|
||||||
|
isRotated: state.isRotated,
|
||||||
|
});
|
||||||
|
}, [defaultViewport]);
|
||||||
|
|
||||||
const { selected, isRotated } = state;
|
const { selected, isRotated } = state;
|
||||||
const item =
|
const item =
|
||||||
list.find(i => i.id === selected) ||
|
list.find(i => i.id === selected) ||
|
||||||
|
Loading…
x
Reference in New Issue
Block a user