Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
86ed94f
style: text change empty layout
vincentbpro Nov 30, 2021
b50d837
style: text change go back
vincentbpro Nov 30, 2021
e2fa734
style: text change settings overview
vincentbpro Nov 30, 2021
6edaac1
style: text change settings overview content
vincentbpro Nov 30, 2021
c6ba164
style: text change settings i18n
vincentbpro Nov 30, 2021
f358628
style: text change settings media lib
vincentbpro Nov 30, 2021
4aad739
style: text change settings webhooks
vincentbpro Nov 30, 2021
5526218
style: text change settings users
vincentbpro Nov 30, 2021
06c5443
style: text change settings email
vincentbpro Dec 1, 2021
6fbca03
style: text change settings user details
vincentbpro Dec 1, 2021
b195742
style: text change pluralized sidenav items
vincentbpro Dec 1, 2021
bb149cb
feat: added get-help link
vincentbpro Dec 1, 2021
2f2bbb6
feat: disable test email cta if address in invalid
vincentbpro Dec 1, 2021
c58b744
tests: updated snapshot
vincentbpro Dec 1, 2021
6e07df5
feat: added empty contentmanager CTA
vincentbpro Dec 1, 2021
de3f19c
style: text change cm add new
vincentbpro Dec 1, 2021
3ef5f26
feat: added back link to cm
vincentbpro Dec 1, 2021
aabdddf
style: small text fixes
vincentbpro Dec 1, 2021
36bfa44
Merge branch 'master' of github.com:strapi/strapi into v4/product-cop…
vincentbpro Dec 1, 2021
558110d
refactor: removed variables not used
vincentbpro Dec 2, 2021
1a507c0
Merge branch 'master' into v4/product-copy-text-changes-v1
vincentbpro Dec 3, 2021
7183aa4
style: small text changes
vincentbpro Dec 7, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: added back link to cm
  • Loading branch information
vincentbpro committed Dec 1, 2021
commit 3ef5f26ffd841ae37cd807f6ba03e6954fa428b1
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ import { Box } from '@strapi/design-system/Box';
import { ActionLayout, ContentLayout, HeaderLayout } from '@strapi/design-system/Layout';
import { useNotifyAT } from '@strapi/design-system/LiveRegions';
import { Button } from '@strapi/design-system/Button';
import { Link } from '@strapi/design-system/Link';
import ArrowLeft from '@strapi/icons/ArrowLeft';
import Plus from '@strapi/icons/Plus';
import Cog from '@strapi/icons/Cog';
import axios from 'axios';
Expand Down Expand Up @@ -262,6 +264,14 @@ function ListView({
primaryAction={getCreateAction()}
subtitle={subtitle}
title={headerLayoutTitle}
navigationAction={
<Link startIcon={<ArrowLeft />} to="/content-manager/">
{formatMessage({
id: 'app.components.HeaderLayout.link.go-back',
defaultMessage: 'Back',
})}
</Link>
}
/>
{!canRead && (
<ActionLayout endActions={<InjectionZone area="contentManager.listView.actions" />} />
Expand Down