diff --git a/themes/vocabulary_theme/templates/issue_finder.html b/themes/vocabulary_theme/templates/issue_finder.html index fdf625d2..ef9bb61f 100644 --- a/themes/vocabulary_theme/templates/issue_finder.html +++ b/themes/vocabulary_theme/templates/issue_finder.html @@ -3,40 +3,58 @@ {% block title %}{{ this.title }}{% endblock %} {% block body %} -
{{ this.description }}
+Loading issues...
+No results.
"; + return; + } + + // Create an issue card for each filtered issue + filteredIssues.forEach((issue) => { + const issueCard = document.createElement("div"); + issueCard.className = "issue-card"; + issueCard.innerHTML = ` ++ + ${issue.repo}#${issue.number} + + opened on ${issue.created_at.split("T")[0]}. +
+