diff --git a/packages/component-manuscript/src/molecules/AuthorsWithTooltip.js b/packages/component-manuscript/src/molecules/AuthorsWithTooltip.js
index fb160e4f8bb4c08c0c1e55ccbb779eff3d5c047d..ca3059bd7d552e6c88733ffe72de55ad1d093e9a 100644
--- a/packages/component-manuscript/src/molecules/AuthorsWithTooltip.js
+++ b/packages/component-manuscript/src/molecules/AuthorsWithTooltip.js
@@ -41,7 +41,7 @@ const DefaultLabel = ({
   <Author>
     <AuthorName>{`${firstName} ${lastName}`}</AuthorName>
     {isSubmitting && <AuthorStatus>SA</AuthorStatus>}
-    {isCorresponding && <AuthorStatus>CA</AuthorStatus>}
+    {isCorresponding && !isSubmitting && <AuthorStatus>CA</AuthorStatus>}
     {arr.length - 1 === index ? '' : ','}
   </Author>
 )
diff --git a/packages/components-faraday/src/components/Dashboard/DashboardCard.js b/packages/components-faraday/src/components/Dashboard/DashboardCard.js
index d85713ebe1c0fa703db0c99ea50dd551b665dd90..25f865a3233039bc6ee538dbc048f1d15ddd7fe5 100644
--- a/packages/components-faraday/src/components/Dashboard/DashboardCard.js
+++ b/packages/components-faraday/src/components/Dashboard/DashboardCard.js
@@ -376,6 +376,7 @@ const ManuscriptType = styled.div`
   text-overflow: ellipsis;
   white-space: nowrap;
   overflow: hidden;
+  flex: 1;
 `
 
 const Title = styled.div`
@@ -387,6 +388,7 @@ const Title = styled.div`
   text-overflow: ellipsis;
   white-space: nowrap;
   overflow: hidden;
+  flex: 1;
 `
 
 const Status = styled.div`