Skip to content

Commit

Permalink
Merge pull request #208 from AgainIoT/feature/207
Browse files Browse the repository at this point in the history
Fix : review's Issue Template Bug #207 AgainIoT/Open-Set-Go#68
  • Loading branch information
ymw0407 authored Nov 4, 2023
2 parents f7fbf5c + 6ace86d commit 8d2b5ce
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
Sitemap: http://www.open-set-go.com/sitemap.xml
Sitemap: https://www.open-set-go.com/sitemap.xml
9 changes: 7 additions & 2 deletions src/components/common/modal/ReviewDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const ReviewDialog = (props) => {
const repoName = useRecoilValue(reviewRepoDataState("repoName"));
const pr = useRecoilValue(templateContent("pr"));
const contributing = useRecoilValue(templateContent("contributing"));
const issue = useRecoilValue(issueSelectedState("issue"));
const issues = useRecoilValue(issueSelectedState("issue"));
const readme = useRecoilValue(templateContent("readme"));

const [dialogValue, setDialogValue] = useRecoilState(modalState(props.type));
Expand Down Expand Up @@ -72,7 +72,12 @@ export const ReviewDialog = (props) => {
{
owner: owner,
repoName: repoName,
issues: issue,
issues: issues.map((issue) => {
return {
category: issue.type,
content: issue.content,
};
}),
},
{
withCredentials: true,
Expand Down

0 comments on commit 8d2b5ce

Please sign in to comment.