Skip to content

Commit

Permalink
Fix overflow scroll on event config panel (#1283)
Browse files Browse the repository at this point in the history
  • Loading branch information
djfarrelly committed Apr 16, 2024
1 parent 09428e7 commit cd53210
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default function EventDashboard({ params }: EventDashboardProps) {
/>
<LatestLogsList environmentSlug={params.environmentSlug} eventName={eventNameDecoded} />
</main>
<aside className="border border-slate-200 bg-white px-6 py-4">
<aside className="overflow-y-auto border border-slate-200 bg-white px-6 py-4">
<Block title="Triggered Functions">
{eventType && eventType.workflows.length > 0
? eventType.workflows.map((w) => (
Expand Down

0 comments on commit cd53210

Please sign in to comment.