We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d70c67 commit c63c563Copy full SHA for c63c563
site/src/pages/TemplatesPage/TemplatesPageView.tsx
@@ -77,12 +77,14 @@ export const TemplatesPageView: React.FC<TemplatesPageViewProps> = (props) => {
77
</Avatar>
78
<Link component={RouterLink} to={`/templates/${template.id}`} className={styles.templateLink}>
79
<b>{template.name}</b>
80
+ <span>
81
+ {template.description}
82
+ </span>
83
</Link>
- {template.description}
84
</div>
85
</TableCell>
- <TableCell>{dayjs().to(dayjs(template.updated_at))}</TableCell>
86
<TableCell>{template.workspace_owner_count} developer{template.workspace_owner_count !== 1 && "s"}</TableCell>
87
+ <TableCell>{dayjs().to(dayjs(template.updated_at))}</TableCell>
88
</TableRow>
89
)
90
})}
0 commit comments