Skip to content

Commit

Permalink
quick fix for tags breaking precomputed annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisj committed Oct 2, 2024
1 parent 8b8a9ea commit e8dfab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/annotation/frontend_source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ import {
SliceViewChunkSource,
} from "#src/sliceview/frontend.js";
import { StatusMessage } from "#src/status.js";
import type { WatchableValue } from "#src/trackable_value.js";
import { WatchableValue } from "#src/trackable_value.js";
import type { Borrowed, Owned } from "#src/util/disposable.js";
import { ENDIANNESS, Endianness } from "#src/util/endian.js";
import * as matrix from "#src/util/matrix.js";
Expand Down Expand Up @@ -532,7 +532,7 @@ export class MultiscaleAnnotationSource
) {
super();
this.rank = options.rank;
this.properties.value = options.properties;
this.properties = new WatchableValue(options.properties);
this.annotationPropertySerializers = makeAnnotationPropertySerializers(
this.rank,
this.properties.value,
Expand Down

0 comments on commit e8dfab6

Please sign in to comment.