Skip to content

Commit 7aa4a01

Browse files
committed
fix: only used 'unnamed' as a last resort for templates
1 parent 6ef1bee commit 7aa4a01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/pages/WorkspacesPage/WorkspacesButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function WorkspaceResultsRow({ template }: { template: Template }) {
8484
sx={{ marginY: 0, paddingBottom: 0.5, lineHeight: 1 }}
8585
noWrap
8686
>
87-
{template.display_name || "[Unnamed]"}
87+
{template.display_name || template.name || "[Unnamed]"}
8888
</Typography>
8989

9090
<Box

0 commit comments

Comments
 (0)