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
2 changes: 1 addition & 1 deletion gcs/src/components/fla/graph.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ export default function Graph({
}, [events, showEvents, flightModes, data])

return (
<div>
<div className="flex-1 min-h-0 w-full">
<Line ref={chartRef} options={config} data={data} />
<div className="flex flex-row gap-2 pt-2">
<MantineTooltip label="Zoom in">
Expand Down
4 changes: 2 additions & 2 deletions gcs/src/fla.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ export default function FLA() {
) : (
// Graphs section
<>
<div className="flex h-full gap-4 px-2 py-4 mb-4 overflow-x-auto">
<div className="flex h-full gap-4 px-2 py-4 mb-4 overflow-hidden">
{/* Message selection column */}
<div className="w-1/4 pb-6">
<div className="flex flex-col mb-2 text-sm gap-y-2">
Expand Down Expand Up @@ -859,7 +859,7 @@ export default function FLA() {
</div>

{/* Graph column */}
<div className="w-full h-full pr-4">
<div className="w-full h-full pr-4 min-w-0 flex flex-col">
<Graph
data={chartData}
events={logEvents}
Expand Down