소스 검색

remove ===

ryuichi-e 6 년 전
부모
커밋
3c9ab4a51c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/client/js/components/Admin/UserManagement.jsx

+ 2 - 2
src/client/js/components/Admin/UserManagement.jsx

@@ -51,8 +51,8 @@ class UserManagement extends React.Component {
       return this.setState({ isNotifyCommentShow: true });
     }
 
-    if (adminUsersContainer.state.isNotifyCommentShow === true) {
-      await adminUsersContainer.setState({ isNotifyCommentShow: false });
+    if (this.state.isNotifyCommentShow) {
+      await this.setState({ isNotifyCommentShow: false });
     }
     adminUsersContainer.handleClick(statusType);
   }