Skip to content

Commit 1f952f9

Browse files
committed
Fix overflowing pid component
1 parent c31c5db commit 1f952f9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/result/GenericResultView.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,10 +447,12 @@ export function GenericResultView({
447447

448448
{showInspectFDO && (
449449
<Dialog open={showInspectDialog} onOpenChange={setShowInspectDialog}>
450-
<DialogContent className="rfs-max-w-[calc(100vw-40px)] !rfs-min-w-[min(1200px,calc(100vw-40px))]">
450+
<DialogContent className="!rfs-max-w-[calc(100vw-40px)] !rfs-min-w-[min(1200px,calc(100vw-40px))]">
451451
<DialogTitle>Inspect Fair Digital Object</DialogTitle>
452452

453-
<PidComponent openByDefault value={pid} levelOfSubcomponents={10} />
453+
<div className={"rfs-overflow-auto"}>
454+
<PidComponent openByDefault value={pid} levelOfSubcomponents={10} />
455+
</div>
454456
</DialogContent>
455457
</Dialog>
456458
)}

0 commit comments

Comments
 (0)