Skip to content

Commit

Permalink
Fix dataset description style (#73)
Browse files Browse the repository at this point in the history
* Fix dataset description style
  • Loading branch information
barbara-chaves authored Aug 8, 2024
1 parent cfb3a8e commit 07ea21d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/components/ui/rich-text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const RichText = ({ children, className }: RichTextProps) => {
<Markdown
components={{
a: (props) => (
<a {...omit(props, "node")} target="_blank" className="underline">
<a {...omit(props, "node")} target="_blank" className="break-all underline">
{props.children}
</a>
),
Expand Down
2 changes: 1 addition & 1 deletion client/src/containers/datasets/info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const DatasetInfo = ({ citations, info, title, ...props }: DatsetInfoProps) => {
href={citation?.url}
target="_blank"
rel="noopener noreferrer"
className="underline"
className="break-all underline"
>
{citation?.url}
</a>
Expand Down

0 comments on commit 07ea21d

Please sign in to comment.