Skip to content
Open
Changes from 1 commit
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
6 changes: 5 additions & 1 deletion app/packages/embeddings/src/EmbeddingsPlot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,11 @@ export function EmbeddingsPlot({
plot_bgcolor: "rgba(0,0,0,0)",
legend: {
x: 1,
y: 1,
y: bounds.width < 500 ? 61 / bounds.height : 1,
xanchor: "right",
yanchor: "top",
yref: "paper",
xref: "paper",
bgcolor: theme.background.level1,
font: {
color: theme.text.secondary,
Expand Down
Loading