Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 950 Bytes

knownbugs.md

File metadata and controls

22 lines (18 loc) · 950 Bytes

Known Bugs in the Platform

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

From Github

<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>