Skip to content

Commit

Permalink
fix: resolved border flicker on issue title (#4727)
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolsinghbhatia authored and sriramveeraghanta committed Jun 10, 2024
1 parent 25bcc53 commit 7708f2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/components/issues/title-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export const IssueTitleInput: FC<IssueTitleInputProps> = observer((props) => {
className={cn(
"block w-full resize-none overflow-hidden rounded border-none bg-transparent px-3 py-0 text-2xl font-medium outline-none ring-0",
{
"ring-1 ring-red-400 mx-3": title.length === 0,
"ring-1 ring-red-400 mx-3": title.length && title.length === 0,
},
className
)}
Expand Down

0 comments on commit 7708f2b

Please sign in to comment.