quick fix for returning libraries

This commit is contained in:
alicia pritchett 2022-02-10 18:38:11 -05:00
parent 46c81fd7d0
commit 760864131b

View File

@ -199,7 +199,9 @@ export class WorkflowSpecListComponent implements OnInit {
references.push(wfs.id);
}
});
return false; // and later return and deal with references
if (references.length > 0) {
return false;
}
}
return true;
}