Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

어드민 서술형문제 수정페이지에 "X"가 모범답안으로 추가되는 버그 수정 #116

Merged
merged 1 commit into from
Jan 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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) || [],
Comment on lines +90 to +92
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

) 와 . 이 떨어져있는걸 붙여보는건 어떤가요.

Copy link
Member Author

@Kim-Hyunjo Kim-Hyunjo Jan 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

하지만 저의 소중한 prettier가 저게 더 맘에 든다는데요,,

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:(

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Kim-Hyunjo 고고

tags: tagState.filter((tag) => tag.isChecked).map((e) => e.id),
gradingStandards: [
...keywordStandardState.map(({ content, score, type }) => {
Expand Down