Skip to content

Commit

Permalink
fix: add _ to overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
etowahadams committed Oct 26, 2023
1 parent c719275 commit cd2de4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tracks/gosling-track/gosling-track.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const factory: PluginTrackFactory<Tile, GoslingTrackOptions> = (HGC, context, op

// Add unique IDs to each of the overlaid tracks that will be rendered independently.
if ('overlay' in this.options.spec) {
this.options.spec.overlay = (this.options.spec as OverlaidTrack).overlay.map(o => {
this.options.spec.overlay = (this.options.spec as OverlaidTrack)._overlay.map(o => {
return { ...o, _renderingId: uuid() };
});
} else {
Expand Down

0 comments on commit cd2de4e

Please sign in to comment.