Merge pull request #240 from gkohen/main

Make sure path string does not overflow the dialog
This commit is contained in:
Anoop M D 2023-09-29 02:29:01 +05:30 committed by GitHub
commit 516411b9a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ const CollectionProperties = ({ collection, onClose }) => {
</tr> </tr>
<tr className=""> <tr className="">
<td className="py-2 px-2 text-right">Location&nbsp;:</td> <td className="py-2 px-2 text-right">Location&nbsp;:</td>
<td className="py-2 px-2">{collection.pathname}</td> <td className="py-2 px-2 break-all">{collection.pathname}</td>
</tr> </tr>
<tr className=""> <tr className="">
<td className="py-2 px-2 text-right">Environments&nbsp;:</td> <td className="py-2 px-2 text-right">Environments&nbsp;:</td>