mirror of
https://github.com/urbit/shrub.git
synced 2024-12-25 04:52:06 +03:00
RemoteContent: stop propagation on unfold click
This commit is contained in:
parent
6df2d349d3
commit
0cdbebbd66
@ -24,7 +24,8 @@ export function RemoteContentWrapper(props: RemoteContentWrapperProps) {
|
||||
} = props;
|
||||
|
||||
const [unfold, setUnfold] = useState(false);
|
||||
const toggleUnfold = useCallback(() => {
|
||||
const toggleUnfold = useCallback((e: React.MouseEvent) => {
|
||||
e.stopPropagation();
|
||||
setUnfold(s => !s);
|
||||
}, []);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user