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 17996ab commit ed50bfbCopy full SHA for ed50bfb
packages/app/src/app/pages/Sandbox/Editor/Workspace/screens/Explorer/ExternalResources/index.tsx
@@ -56,19 +56,7 @@ export const ExternalResources: FunctionComponent<{ readonly: boolean }> = ({
56
':hover, :focus-within': { button: { opacity: 1 } },
57
}}
58
>
59
- <Link
60
- block
61
- maxWidth="100%"
62
- css={css({
63
- wordBreak: 'break-all',
64
- overflow: 'hidden',
65
- textOverflow: 'ellipsis',
66
- '-webkit-line-clamp': 1,
67
- '-webkit-box-orient': 'vertical',
68
- })}
69
- href={resource}
70
- target="_blank"
71
- >
+ <Link block maxWidth="100%" href={resource} target="_blank">
72
{getName(resource)}
73
</Link>
74
{!readonly && (
0 commit comments