From 4539415858af4ec3118c75d5500c928900d9ccd2 Mon Sep 17 00:00:00 2001 From: igoradamenko Date: Mon, 18 Jun 2018 23:34:50 +0300 Subject: [PATCH] fix loading flag initial value in user-info component --- web/app/components/user-info/user-info.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/user-info/user-info.jsx b/web/app/components/user-info/user-info.jsx index 92bd7c76..ee2fdaef 100644 --- a/web/app/components/user-info/user-info.jsx +++ b/web/app/components/user-info/user-info.jsx @@ -11,7 +11,7 @@ export default class UserInfo extends Component { this.state = { comments: [], - isLoading: false, + isLoading: true, }; }