Skip to content

Commit

Permalink
fix: 스토리 화살표 버튼을 눌렀을 때 타이틀 수정창이 나오는 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
surinkwon committed Jul 15, 2024
1 parent 8a95037 commit a04db17
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/components/backlog/StoryBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,10 @@ const StoryBlock = ({
<button
className="flex items-center justify-center w-5 h-5 rounded-md hover:bg-dark-gray hover:bg-opacity-20"
type="button"
onClick={() => handleShowDetail(!showDetail)}
onClick={(event) => {
event.stopPropagation();
handleShowDetail(!showDetail);
}}
>
{showDetail ? (
<ChevronDown
Expand Down

0 comments on commit a04db17

Please sign in to comment.