diff options
Diffstat (limited to 'apps/web/components/dashboard/lists/ListHeader.tsx')
| -rw-r--r-- | apps/web/components/dashboard/lists/ListHeader.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/web/components/dashboard/lists/ListHeader.tsx b/apps/web/components/dashboard/lists/ListHeader.tsx index af4a3551..4e318dad 100644 --- a/apps/web/components/dashboard/lists/ListHeader.tsx +++ b/apps/web/components/dashboard/lists/ListHeader.tsx @@ -48,6 +48,11 @@ export default function ListHeader({ <div className="flex items-center gap-2"> <span className="text-2xl"> {list.icon} {list.name} + {list.description && ( + <span className="mx-2 text-lg text-gray-400"> + {`(${list.description})`} + </span> + )} </span> </div> <div className="flex items-center"> |
