From 2e61723f2496b5beba21c84c61d4464e6ebac749 Mon Sep 17 00:00:00 2001 From: plante-msft Date: Wed, 20 Mar 2024 11:57:36 -0700 Subject: [PATCH] Fixed GetDescription typo in webDataHandler --- backendsrc/webDataHandler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backendsrc/webDataHandler.js b/backendsrc/webDataHandler.js index b698f10..d35f151 100755 --- a/backendsrc/webDataHandler.js +++ b/backendsrc/webDataHandler.js @@ -2143,7 +2143,7 @@ class WebDataHandler { async getSimilarIssues(queryData) { const { organizationName, repoName, issueTitle, issueBody } = queryData; - let issueDescription = GetDesription(issueTitle, issueBody) // to do rewrite to take in issue title and body + let issueDescription = GetDescription(issueTitle, issueBody) // to do rewrite to take in issue title and body let dbRepoName = (organizationName + "/" + repoName).toLowerCase();