Our Github repository keeps track of all bugs that have been submitted so far. Below is a list of the current bugs that have not yet been resolved. For the full list, please visit:
https://github.com/ITISFoundation/osparc-issues/issues
<script type="text/javascript"> var urlToGetAllOpenBugs = "https://api.github.com/repos/ITISFoundation/osparc-issues/issues?state=open&labels=bug&sort:reactions-+1-desc"; $(document).ready(function () { $.getJSON(urlToGetAllOpenBugs, function (allIssues) { $.each(allIssues, function (i, issue) { $("#script_1") .append("" + issue.number + " - " + issue.title + "
") .append("created at: " + issue.created_at) .append(" link
"); }); }); }); </script>