Skip to content

Commit

Permalink
setting duration as default
Browse files Browse the repository at this point in the history
  • Loading branch information
BryonLewis committed Feb 29, 2024
1 parent 9394f3d commit 5a0f8d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/use/useState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { OtherUserAnnotations, Recording, SpectrogramAnnotation, SpectrogramTemp
const annotationState: Ref<AnnotationState> = ref("");
const creationType: Ref<'pulse' | 'sequence'> = ref("pulse");
type LayersVis = "time" | "freq" | "species" | "grid" | 'temporal' | 'duration';
const layerVisibility: Ref<LayersVis[]> = ref(['temporal', 'species', 'time', 'freq']);
const layerVisibility: Ref<LayersVis[]> = ref(['temporal', 'species', 'duration', 'freq']);
const colorScale: Ref<d3.ScaleOrdinal<string, string, never> | undefined> = ref();
const selectedUsers: Ref<string[]> = ref([]);
const currentUser: Ref<string> = ref('');
Expand Down

0 comments on commit 5a0f8d4

Please sign in to comment.