Skip to content

Commit 47a0bb0

Browse files
Cahllagerfeldroboquat
authored andcommitted
feat: add wrapping for contextUrl
1 parent af2f0a8 commit 47a0bb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/dashboard/src/start/CreateWorkspace.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export default class CreateWorkspace extends React.Component<CreateWorkspaceProp
172172
<a href={w.latestInstance?.ideUrl} className="rounded-xl group hover:bg-gray-100 dark:hover:bg-gray-800 flex p-3 my-1">
173173
<div className="w-full">
174174
<p className="text-base text-black dark:text-gray-100 font-bold">{w.workspace.id}</p>
175-
<p>{w.workspace.contextURL}</p>
175+
<p className="truncate" title={w.workspace.contextURL}>{w.workspace.contextURL}</p>
176176
</div>
177177
</a>
178178
)}

0 commit comments

Comments
 (0)