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

Hotfix/#220 특수문자 있는 경우에도 텍스트 드래그 되도록 수정 #221

Merged
merged 3 commits into from
Nov 27, 2024

Conversation

Ludovico7
Copy link
Collaborator

@Ludovico7 Ludovico7 commented Nov 27, 2024

📝 변경 사항

🔍 변경 사항 설명

  • sanitizeText 함수로 특수문자를 html 엔티티로 변경하는 부분에서 문제가 발생했습니다.
  • 블록의 style에 whiteSpace: "pre-wrap" 속성을 추가하여 공백과 줄바꿈 문자가 유지되도록 수정했습니다.

🙏 질문 사항

📷 스크린샷 (선택)

spacequote.mov

✅ 작성자 체크리스트

  • Self-review: 코드가 스스로 검토됨
  • Unit tests 추가 또는 수정
  • 로컬에서 모든 기능이 정상 작동함
  • 린터 및 포맷터로 코드 정리됨
  • 의존성 업데이트 확인
  • 문서 업데이트 또는 주석 추가 (필요 시)

@Ludovico7 Ludovico7 added Bug 기능 또는 UI에서 발생한 오류나 예상치 못한 동작을 해결 FE 프론트엔드 작업 P1 긴급/즉시 반영 labels Nov 27, 2024
@Ludovico7 Ludovico7 self-assigned this Nov 27, 2024
@@ -137,6 +137,11 @@ const setsEqual = (a: Set<string>, b: Set<string>): boolean => {
}
return true;
};

const sanitizeText = (text: string): string => {
return text.replace(/<br>/g, "\u00A0");
Copy link
Collaborator

Choose a reason for hiding this comment

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

https://www.fileformat.info/info/unicode/char/00a0/index.htm

이런 공백문자가 있었군요.. 처음알았습니다.

Copy link
Collaborator

@hyonun321 hyonun321 left a comment

Choose a reason for hiding this comment

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

수고하셨습니다 !!

Copy link
Member

@pipisebastian pipisebastian left a comment

Choose a reason for hiding this comment

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

수고하셨습니다!!!! 👍

@github-actions github-actions bot merged commit 3d909c3 into dev Nov 27, 2024
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug 기능 또는 UI에서 발생한 오류나 예상치 못한 동작을 해결 FE 프론트엔드 작업 P1 긴급/즉시 반영
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants