fix: hide card edit icon while in quick card editor

This commit is contained in:
Jordan Knott 2020-07-16 22:21:37 -05:00
parent 6c55b89ee2
commit c236681cd2

View File

@ -142,7 +142,7 @@ const Card = React.forwardRef(
{...wrapperProps} {...wrapperProps}
> >
<ListCardInnerContainer ref={$innerCardRef}> <ListCardInnerContainer ref={$innerCardRef}>
{isActive && ( {isActive && !editable && (
<ListCardOperation <ListCardOperation
onClick={e => { onClick={e => {
e.stopPropagation(); e.stopPropagation();