Skip to content

Commit

Permalink
fix(embeddings): make embedding details scroll (#530)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking authored Apr 6, 2023
1 parent 0b86328 commit 29a29ab
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/src/pages/embedding/EventDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ import { ModelEvent } from "./types";
export function EventDetails({ event }: { event: ModelEvent }) {
const imageUrl = event.linkToData || undefined;
return (
<section>
<section
css={css`
height: 100%;
overflow-y: auto;
`}
>
{imageUrl ? (
<img
src={imageUrl}
Expand Down

0 comments on commit 29a29ab

Please sign in to comment.