Skip to content

Commit

Permalink
Merge pull request #104 from nomic-ai/select_data_fix
Browse files Browse the repository at this point in the history
[RFR] Fixing the selection ready
  • Loading branch information
bmschmidt authored Jan 10, 2024
2 parents 100762d + f21de1c commit f0d2bb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deepscatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,12 @@ class Scatterplot<T extends Tile> {
}
}
const selection = new DataSelection<T>(this, params);
await selection.ready;
this.selection_history.push({
selection,
name: selection.name,
flushed: false,
});
await selection.ready;
return selection;
}

Expand Down

0 comments on commit f0d2bb9

Please sign in to comment.