We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af2f0a8 commit 47a0bb0Copy full SHA for 47a0bb0
components/dashboard/src/start/CreateWorkspace.tsx
@@ -172,7 +172,7 @@ export default class CreateWorkspace extends React.Component<CreateWorkspaceProp
172
<a href={w.latestInstance?.ideUrl} className="rounded-xl group hover:bg-gray-100 dark:hover:bg-gray-800 flex p-3 my-1">
173
<div className="w-full">
174
<p className="text-base text-black dark:text-gray-100 font-bold">{w.workspace.id}</p>
175
- <p>{w.workspace.contextURL}</p>
+ <p className="truncate" title={w.workspace.contextURL}>{w.workspace.contextURL}</p>
176
</div>
177
</a>
178
)}
0 commit comments