Skip to content

Commit

Permalink
_id to id in findLabeling
Browse files Browse the repository at this point in the history
  • Loading branch information
birm authored Feb 6, 2024
1 parent 492aecc commit 5fd1fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/labeling/labelingSimpleAnnotation.js
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ async function loadingData() {
const labelId = $D.params.labelId;
const slideId = $D.params.slideId;
//
const labelData = await $CAMIC.store.findLabeling({_id: labelId}).then((d)=>d[0]);
const labelData = await $CAMIC.store.findLabeling({id: labelId}).then((d)=>d[0]);


let sublabels = [];
Expand Down

0 comments on commit 5fd1fb5

Please sign in to comment.