mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-18 13:05:42 +00:00
Fix wrapping for <AttachmentLink /> (#7272)
This commit is contained in:
@ -72,7 +72,7 @@ export function AttachmentLink({
|
|||||||
}, [host, attachment, external]);
|
}, [host, attachment, external]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Group justify="left" gap="sm">
|
<Group justify="left" gap="sm" wrap="nowrap">
|
||||||
{external ? <IconLink /> : attachmentIcon(attachment)}
|
{external ? <IconLink /> : attachmentIcon(attachment)}
|
||||||
<Anchor href={url} target="_blank" rel="noopener noreferrer">
|
<Anchor href={url} target="_blank" rel="noopener noreferrer">
|
||||||
{text}
|
{text}
|
||||||
|
Reference in New Issue
Block a user