File tree 1 file changed +3
-3
lines changed
packages/ui/components/editable-heading
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,6 @@ export const EditableHeading = function EditableHeading({
24
24
< div className = { classNames ( ! disabled && "cursor-pointer" , "flex items-center" ) } >
25
25
< label className = "min-w-8 relative inline-block" >
26
26
< span className = "whitespace-pre text-xl tracking-normal text-transparent" > { value } </ span >
27
- { ! isEditing && isReady && ! disabled && (
28
- < Icon name = "pencil" className = "text-subtle group-hover:text-subtle -mt-px ml-1 inline h-3 w-3" />
29
- ) }
30
27
< input
31
28
{ ...passThroughProps }
32
29
disabled = { disabled }
@@ -49,6 +46,9 @@ export const EditableHeading = function EditableHeading({
49
46
} }
50
47
onChange = { ( e ) => onChange && onChange ( e . target . value ) }
51
48
/>
49
+ { ! isEditing && isReady && ! disabled && (
50
+ < Icon name = "pencil" className = "text-subtle group-hover:text-subtle -mt-px ml-1 inline h-3 w-3" />
51
+ ) }
52
52
</ label >
53
53
</ div >
54
54
</ div >
You can’t perform that action at this time.
0 commit comments