Skip to content

Commit c63c563

Browse files
committed
Add template description
1 parent 3d70c67 commit c63c563

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

site/src/pages/TemplatesPage/TemplatesPageView.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,14 @@ export const TemplatesPageView: React.FC<TemplatesPageViewProps> = (props) => {
7777
</Avatar>
7878
<Link component={RouterLink} to={`/templates/${template.id}`} className={styles.templateLink}>
7979
<b>{template.name}</b>
80+
<span>
81+
{template.description}
82+
</span>
8083
</Link>
81-
{template.description}
8284
</div>
8385
</TableCell>
84-
<TableCell>{dayjs().to(dayjs(template.updated_at))}</TableCell>
8586
<TableCell>{template.workspace_owner_count} developer{template.workspace_owner_count !== 1 && "s"}</TableCell>
87+
<TableCell>{dayjs().to(dayjs(template.updated_at))}</TableCell>
8688
</TableRow>
8789
)
8890
})}

0 commit comments

Comments
 (0)