From e284491ae56a3982db04cc84af14ed84579242bf Mon Sep 17 00:00:00 2001 From: Nguyen Viet Date: Fri, 30 Jul 2021 14:39:03 +0700 Subject: [PATCH] fix avatars disappeared when saving --- src/projects/detail/containers/DashboardContainer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/projects/detail/containers/DashboardContainer.jsx b/src/projects/detail/containers/DashboardContainer.jsx index 2ac46759d..509c15368 100644 --- a/src/projects/detail/containers/DashboardContainer.jsx +++ b/src/projects/detail/containers/DashboardContainer.jsx @@ -165,7 +165,7 @@ class DashboardContainer extends React.Component { ).then(() => phaseMembers) // ignore the result from backend } - return Promise.resolve([]) + return Promise.resolve(phaseMembers) } if (`${phase.id}`.startsWith('new-milestone')) {