Adds missing code after rebase

This commit is contained in:
mabashian
2021-05-04 14:16:13 -04:00
parent 57433a59d7
commit 11d024abdb

View File

@@ -102,6 +102,8 @@ function Credential({ setBreadcrumb }) {
<PageSection>
<Card>
{showCardHeader && <RoutedTabs tabsArray={tabsArray} />}
{hasContentLoading && <ContentLoading />}
{!hasContentLoading && credential && (
<Switch>
<Redirect
from="/credentials/:id"
@@ -145,6 +147,7 @@ function Credential({ setBreadcrumb }) {
)}
</Route>
</Switch>
)}
</Card>
</PageSection>
);