Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
enhance disabled mode for subblocks
  • Loading branch information
waleedlatif1 committed Feb 10, 2026
commit 8436c73c31f4e65f863c871b40e0e880e4e4b9a2
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ export const ShortInput = memo(function ShortInput({
<div
ref={overlayRef}
className={cn(
'pointer-events-none absolute inset-0 flex items-center overflow-x-auto bg-transparent px-[8px] py-[6px] pr-3 font-medium font-sans text-foreground text-sm [-ms-overflow-style:none] [scrollbar-width:none] [&::-webkit-scrollbar]:hidden',
(isPreview || disabled) && 'opacity-50'
'absolute inset-0 flex items-center overflow-x-auto bg-transparent px-[8px] py-[6px] pr-3 font-medium font-sans text-foreground text-sm [-ms-overflow-style:none] [scrollbar-width:none] [&::-webkit-scrollbar]:hidden',
isPreview || disabled ? 'opacity-50' : 'pointer-events-none'
)}
Comment thread
waleedlatif1 marked this conversation as resolved.
>
<div className='min-w-fit whitespace-pre'>{formattedText}</div>
Expand Down