We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
long project names do not fit in window
delete workspace that has a long project name
No response
The text was updated successfully, but these errors were encountered:
Nice catch @hm2075! We recently fixed this issue for a similar modal in #5248 (see also #4556).
The fix should be relatively simple if you're interested in contributing with a fix. Something like the followign could suffice. 🏓
diff --git a/components/dashboard/src/components/ConfirmationModal.tsx b/components/dashboard/src/components/ConfirmationModal.tsx index e7f9327e..20c6c562 100644 --- a/components/dashboard/src/components/ConfirmationModal.tsx +++ b/components/dashboard/src/components/ConfirmationModal.tsx @@ -33,7 +33,7 @@ export default function ConfirmationModal(props: { child.push( <div className="w-full p-4 mb-2 bg-gray-100 dark:bg-gray-700 rounded-xl group"> <p className="text-base text-gray-800 dark:text-gray-100 font-semibold">{props.children.name}</p> - {props.children.description && <p className="text-gray-500">{props.children.description}</p>} + {props.children.description && <p className="text-gray-500 truncate">{props.children.description}</p>} </div> ) } else if (Array.isArray(props.children)) {
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Bug description
long project names do not fit in window
Steps to reproduce
delete workspace that has a long project name
Expected behavior
No response
Example repository
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: