From 054634ba85bda8d77c83883e075c660d762ae817 Mon Sep 17 00:00:00 2001 From: Ryan Slominski Date: Mon, 15 Jun 2026 17:41:27 -0400 Subject: [PATCH 1/3] Apply suggested fix to src/main/webapp/resources/js/directory.js from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- src/main/webapp/resources/js/directory.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/resources/js/directory.js b/src/main/webapp/resources/js/directory.js index 869cc77..6014e3b 100644 --- a/src/main/webapp/resources/js/directory.js +++ b/src/main/webapp/resources/js/directory.js @@ -171,12 +171,13 @@ $(document).on("dialogclose", "#table-row-dialog", function() { $(document).on("click", "#open-edit-row-dialog-button", function() { var $selectedRow = $(".editable-row-table tr.selected-row"), topicCsv = $selectedRow.attr("data-topic-csv") || ""; + topicCsv = $selectedRow.attr("data-topic-csv") || ""; $("#row-name").val($selectedRow.attr("data-name")); $("#row-type").val($selectedRow.attr("data-type")); $("#row-description").val($selectedRow.attr("data-description")); $("#row-note").val($selectedRow.attr("data-note")); $("#row-maintainers").val($selectedRow.attr("data-maintainer-csv")); - $("#row-repo").val($selectedRow.attr("data-repo-id")); + $("#row-topics").val(topicCsv.split(",")).trigger('change'); $("#row-topics").val(topicCsv.split(",")).trigger('change'); $("#row-url").val($selectedRow.attr("data-url")); $("#row-archived").val($selectedRow.attr("data-archived")); From 46114a1216eb16d929799b2d8002faa5b3ca0a3c Mon Sep 17 00:00:00 2001 From: Ryan Slominski Date: Mon, 15 Jun 2026 17:41:27 -0400 Subject: [PATCH 2/3] Apply suggested fix to src/main/webapp/resources/js/directory.js from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> From ef95ce84b87737e01f50828fc8e44e8dbe793994 Mon Sep 17 00:00:00 2001 From: Ryan Slominski Date: Mon, 15 Jun 2026 17:41:28 -0400 Subject: [PATCH 3/3] Apply suggested fix to src/main/webapp/resources/js/directory.js from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>