Skip to content

Commit

Permalink
fix: in conversation log click op button would cause close drawer (#3483
Browse files Browse the repository at this point in the history
)
  • Loading branch information
iamjoel authored Apr 15, 2024
1 parent fd38e1c commit 459bed9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const Base: FC<Props> = ({
<div ref={ref} className={cn(className, isExpand && 'h-full', 'rounded-lg border', isFocus ? 'bg-white border-gray-200' : 'bg-gray-100 border-gray-100 overflow-hidden')}>
<div className='flex justify-between items-center h-7 pt-1 pl-3 pr-2'>
<div className='text-xs font-semibold text-gray-700'>{title}</div>
<div className='flex items-center'>
<div className='flex items-center' onClick={e => e.stopPropagation()}>
{headerRight}
{!isCopied
? (
Expand Down

0 comments on commit 459bed9

Please sign in to comment.