소스 검색

clicking on anything other than input will close input

Shun Miyazawa 4 년 전
부모
커밋
2c676cbe76
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/app/src/components/Sidebar/PageTree/Item.tsx

+ 1 - 1
packages/app/src/components/Sidebar/PageTree/Item.tsx

@@ -266,7 +266,7 @@ const Item: FC<ItemProps> = (props: ItemProps) => {
           <ClosableTextInput
             isShown
             placeholder={page.path}
-            onClickOutside={() => { setNewPageInputShown(false) }}
+            onClickOutside={() => { setIsInputForRenameOpen(false) }}
             onPressEnter={onPressEnterHandlerForRename}
           />
         )}