Przeglądaj źródła

Merge pull request #4908 from weseek/fix/83806-plus-button-bug

fix plus button bug
Haku Mizuki 4 lat temu
rodzic
commit
7e8654b058

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

@@ -206,7 +206,7 @@ const Item: FC<ItemProps> = (props: ItemProps) => {
         </div>
       </div>
 
-      {!isEnableActions && (
+      {isEnableActions && (
         <ClosableTextInput
           isShown={isNewPageInputShown}
           placeholder={t('Input title')}