Skip to content

Commit 07ea21d

Browse files
Fix dataset description style (#73)
* Fix dataset description style
1 parent cfb3a8e commit 07ea21d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/src/components/ui/rich-text.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const RichText = ({ children, className }: RichTextProps) => {
1616
<Markdown
1717
components={{
1818
a: (props) => (
19-
<a {...omit(props, "node")} target="_blank" className="underline">
19+
<a {...omit(props, "node")} target="_blank" className="break-all underline">
2020
{props.children}
2121
</a>
2222
),

client/src/containers/datasets/info.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const DatasetInfo = ({ citations, info, title, ...props }: DatsetInfoProps) => {
4141
href={citation?.url}
4242
target="_blank"
4343
rel="noopener noreferrer"
44-
className="underline"
44+
className="break-all underline"
4545
>
4646
{citation?.url}
4747
</a>

0 commit comments

Comments
 (0)