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({
4444 { users . map (
4545 ( u ) =>
4646 u && (
47- < List key = { u . id } title = { `${ u . name } ' s connections` } >
47+ < List key = { u . id } title = { `${ u . name } ' s connections` } >
4848 { 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 >
5059 ) ) }
5160 </ List >
5261 ) ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default function AchievementTile({
1818 return (
1919 < >
2020 < 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" } ` }
2222 onClick = { ( ) => setIsOpen ( true ) }
2323 >
2424 < Image
You can’t perform that action at this time.
0 commit comments