Minor fixes (#758)
This commit is contained in:
@ -28,8 +28,8 @@ export function useOpenCreateCommentThreadDrawerForSelectedRowIds() {
|
|||||||
const [, setViewableCommentThreadId] = useRecoilState(
|
const [, setViewableCommentThreadId] = useRecoilState(
|
||||||
viewableCommentThreadIdState,
|
viewableCommentThreadIdState,
|
||||||
);
|
);
|
||||||
|
|
||||||
const setHotkeyScope = useSetHotkeyScope();
|
const setHotkeyScope = useSetHotkeyScope();
|
||||||
setHotkeyScope(RightDrawerHotkeyScope.RightDrawer, { goto: false });
|
|
||||||
|
|
||||||
const [, setCommentableEntityArray] = useRecoilState(
|
const [, setCommentableEntityArray] = useRecoilState(
|
||||||
commentableEntityArrayState,
|
commentableEntityArrayState,
|
||||||
|
|||||||
@ -42,9 +42,9 @@ export function DropdownMenuCheckableItem({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<DropdownMenuCheckableItemContainer>
|
<DropdownMenuCheckableItemContainer onClick={handleClick}>
|
||||||
<StyledLeftContainer>
|
<StyledLeftContainer>
|
||||||
<Checkbox checked={checked} onChange={handleClick} />
|
<Checkbox checked={checked} />
|
||||||
<StyledChildrenContainer>{children}</StyledChildrenContainer>
|
<StyledChildrenContainer>{children}</StyledChildrenContainer>
|
||||||
</StyledLeftContainer>
|
</StyledLeftContainer>
|
||||||
</DropdownMenuCheckableItemContainer>
|
</DropdownMenuCheckableItemContainer>
|
||||||
|
|||||||
Reference in New Issue
Block a user