Skip to content

Commit

Permalink
Merge branch 'master' into extendQanaryPipelineAsComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
dschiese authored Jul 18, 2024
2 parents a9595ae + 40336d7 commit 25cebbf
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@
// remove any AnnotationCount components so that props can be updated correctly
function removeAnnotationCount() {
/*<![CDATA[*/
let components = [[${componentList}]]
let components = Object.keys([[${componentList}]])
for (i = 0; i < components.length; i++) {
let element = document.getElementById("annotationcount"+components[i]);
if(element){
Expand All @@ -360,9 +360,8 @@
function getNumberOfAnnotations(graph) {
console.log(graph)
/*<![CDATA[*/
let components = [[${componentList}]]
let components = Object.keys([[${componentList}]]);
for (i = 0; i < components.length; i++) {
console.log(components[i]);
console.log(graph)
elementID = "annotationcount" + components[i];
props = {
Expand Down

0 comments on commit 25cebbf

Please sign in to comment.