Skip to content

Commit

Permalink
fix: 피드백 모아보기에서 textarea 클릭 막기
Browse files Browse the repository at this point in the history
  • Loading branch information
chlwlstlf committed Nov 5, 2024
1 parent 29d210b commit a9dc909
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,9 @@ const FeedbackCard = ({
rows={10}
maxLength={2000}
showCharCount={true}
value={
feedbackCardData.feedbackText.length ? feedbackCardData.feedbackText : "미작성"
}
readOnly
placeholder="미작성"
value={feedbackCardData.feedbackText}
disabled
/>
</S.FeedbackDetailContainer>
</S.FeedbackContent>
Expand Down

0 comments on commit a9dc909

Please sign in to comment.