File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ import {
3131} from '../types'
3232import { motion , AnimatePresence } from 'motion/react'
3333import { DashboardHero } from '../../Heros/DashboardHero'
34+ import { cn } from '@/components/dc-temp/utils'
3435interface ColleaguesViewProps {
3536 initialColleagues ?: Colleague [ ]
3637 onColleagueAdd ?: ( colleague : Colleague ) => void
@@ -492,6 +493,9 @@ export default function ColleaguesView({
492493 onDelete = { handleDeleteColleague }
493494 onViewDetails = { handleViewDetails }
494495 compact = { compactView }
496+ className = { cn ( [
497+ colleague . type === 'digital' && 'border-teal-400'
498+ ] ) }
495499 />
496500 ) ) }
497501 </ div >
@@ -534,6 +538,9 @@ export default function ColleaguesView({
534538 onDelete = { handleDeleteColleague }
535539 onViewDetails = { handleViewDetails }
536540 compact = { compactView }
541+ className = { cn ( [
542+ colleague . type === 'digital' && 'border-teal-400'
543+ ] ) }
537544 />
538545 ) ) }
539546 </ div >
Original file line number Diff line number Diff line change @@ -197,12 +197,11 @@ export function ColleagueCard({
197197 </>
198198 )} */ }
199199
200- { /* { colleague.type === 'digital' && (
200+ { colleague . type === 'digital' && (
201201 < div className = "flex items-center gap-2 text-muted-foreground" >
202- <Settings className="h-3 w-3" />
203- <span>v{colleague.version}</span>
202+ < span > { colleague . description } </ span >
204203 </ div >
205- )} */ }
204+ ) }
206205
207206 { /* <div className="flex items-center gap-2 text-muted-foreground">
208207 <Clock className="h-3 w-3" />
You can’t perform that action at this time.
0 commit comments