Skip to content

Commit fb4f426

Browse files
authored
[WEB-479]: rendering issue title without overflow problem in issue peekoverview (#3728)
* chore: rendering issue title without overflow problem * chore: optimised calssName * fix: className update
1 parent 95871b0 commit fb4f426

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

web/components/issues/title-input.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ export const IssueTitleInput: FC<IssueTitleInputProps> = observer((props) => {
4848
[setIsSubmitting]
4949
);
5050

51+
if (disabled) return <div className="text-2xl font-medium">{title}</div>;
52+
5153
return (
5254
<div className="relative">
5355
<TextArea

0 commit comments

Comments
 (0)