Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2383,7 +2383,7 @@ function ReviewCommentBlock({
const data = annotation.metadata;
if (!data) return null;
return (
<div className="m-2 divide-y rounded-lg border bg-surface-0">
<div className="m-2 divide-y overflow-hidden rounded-lg border bg-surface-0">
<ReviewCommentBubble
comment={data}
owner={owner}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ function ReviewCommentThread({
};

return (
<div className="m-2 divide-y rounded-lg border bg-surface-0">
<div className="m-2 divide-y overflow-hidden rounded-lg border bg-surface-0">
{threadInfo?.isResolved && (
<div className="flex items-center gap-1.5 px-3 py-1.5 text-xs font-medium text-green-600 dark:text-green-400">
<CheckIcon size={12} strokeWidth={2} />
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ export function Markdown({
}) {
return (
<MarkdownAssetUrlResolverContext.Provider value={resolveAssetUrl ?? null}>
<div className={cn("not-prose text-foreground", className)}>
<div className={cn("not-prose break-words text-foreground", className)}>
<Md
remarkPlugins={[remarkGfm, remarkAlert]}
rehypePlugins={[rehypeRaw]}
Expand Down