diff --git a/src/components/Dashboard/common/UrlDisplay.jsx b/src/components/Dashboard/common/UrlDisplay.jsx index ada9715..c417b59 100644 --- a/src/components/Dashboard/common/UrlDisplay.jsx +++ b/src/components/Dashboard/common/UrlDisplay.jsx @@ -10,19 +10,30 @@ const UrlDisplay = ({ url, showCopy = true, showLink = false }) => { return ( <> - + {showLink ? ( - {url} + + {url} + ) : ( <> - + {url} @@ -30,7 +41,7 @@ const UrlDisplay = ({ url, showCopy = true, showLink = false }) => { icon={} type='text' size='small' - style={{ minWidth: 25 }} + style={{ minWidth: 25, flexShrink: 0 }} onClick={(e) => { e.preventDefault() window.open(url, '_blank', 'noopener,noreferrer')