Skip to content

Commit

Permalink
Merge pull request #116 from SW13-Monstera/feat/444
Browse files Browse the repository at this point in the history
어드민 서술형문제 수정페이지에 "X"가 모범답안으로 추가되는 버그 수정
  • Loading branch information
Kim-Hyunjo authored Jan 21, 2024
2 parents 8dfb5b7 + b21d6ef commit 839e7d6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ export const LongProblemEditPage = () => {
standardAnswers:
Array.from(
document.getElementsByClassName('standard-answer') as HTMLCollectionOf<HTMLInputElement>,
).map((e) => e.value) || [],
)
.filter((e) => !e.ariaHidden)
.map((e) => e.value) || [],
tags: tagState.filter((tag) => tag.isChecked).map((e) => e.id),
gradingStandards: [
...keywordStandardState.map(({ content, score, type }) => {
Expand Down

0 comments on commit 839e7d6

Please sign in to comment.