fix bits which missed the review cutting block
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
901e402a5c
commit
d3de792f79
3 changed files with 6 additions and 6 deletions
|
@ -434,7 +434,7 @@ export const aboveLeftOf = (elementRect, chevronFace="none") => {
|
|||
};
|
||||
|
||||
export const useContextMenu = () => {
|
||||
const _button = useRef(null);
|
||||
const button = useRef(null);
|
||||
const [isOpen, setIsOpen] = useState(false);
|
||||
const open = () => {
|
||||
setIsOpen(true);
|
||||
|
@ -443,7 +443,7 @@ export const useContextMenu = () => {
|
|||
setIsOpen(false);
|
||||
};
|
||||
|
||||
return [isOpen, _button, open, close, setIsOpen];
|
||||
return [isOpen, button, open, close, setIsOpen];
|
||||
};
|
||||
|
||||
export default class LegacyContextMenu extends ContextMenu {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue