File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
app/(authenticated)/companies/[id]/connections Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -44,9 +44,18 @@ export default async function CompanyConnections({
44
44
{ users . map (
45
45
( u ) =>
46
46
u && (
47
- < List key = { u . id } title = { `${ u . name } ' s connections` } >
47
+ < List key = { u . id } title = { `${ u . name } ' s connections` } >
48
48
{ connectionsByUser [ u . id ] . map ( ( c ) => (
49
- < ConnectionTile key = { c . to } connection = { c } />
49
+ < div key = { c . to } className = "flex flex-col" >
50
+ < ConnectionTile connection = { c } />
51
+ { ! ! c . notes && (
52
+ < textarea
53
+ disabled
54
+ className = "input resize-y min-h-16 max-h-32"
55
+ value = { c . notes }
56
+ />
57
+ ) }
58
+ </ div >
50
59
) ) }
51
60
</ List >
52
61
) ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default function AchievementTile({
18
18
return (
19
19
< >
20
20
< div
21
- className = { `max-w-30 max-h -30 rounded-full shadow-md cursor-pointer ${ achieved ? "bg-white" : "bg-gray-200 grayscale opacity-25" } ` }
21
+ className = { `size -30 rounded-full shadow-md cursor-pointer ${ achieved ? "bg-white" : "bg-gray-200 grayscale opacity-25" } ` }
22
22
onClick = { ( ) => setIsOpen ( true ) }
23
23
>
24
24
< Image
You can’t perform that action at this time.
0 commit comments