style: text change empty layout

This commit is contained in:
vincentbpro 2021-11-30 10:25:38 +01:00
parent 36a69ceb26
commit 86ed94f16e
3 changed files with 3 additions and 2 deletions

View File

@ -253,6 +253,7 @@
"app.components.DownloadInfo.text": "This could take a minute. Thanks for your patience.", "app.components.DownloadInfo.text": "This could take a minute. Thanks for your patience.",
"app.components.EmptyAttributes.title": "There are no fields yet", "app.components.EmptyAttributes.title": "There are no fields yet",
"app.components.EmptyStateLayout.content-permissions": "You don't have the permissions to access that content", "app.components.EmptyStateLayout.content-permissions": "You don't have the permissions to access that content",
"app.components.EmptyStateLayout.content-document": "No content found",
"app.components.HeaderLayout.link.go-back": "Back", "app.components.HeaderLayout.link.go-back": "Back",
"app.components.HomePage.button.blog": "See more on the blog", "app.components.HomePage.button.blog": "See more on the blog",
"app.components.HomePage.community": "Join the community", "app.components.HomePage.community": "Join the community",

View File

@ -34,7 +34,7 @@ EmptyStateLayout.defaultProps = {
action: undefined, action: undefined,
content: { content: {
id: 'app.components.EmptyStateLayout.content-document', id: 'app.components.EmptyStateLayout.content-document',
defaultMessage: "You don't have any content yet...", defaultMessage: 'No content found',
values: {}, values: {},
}, },
hasRadius: true, hasRadius: true,

View File

@ -22,7 +22,7 @@ const NoContent = ({ content, ...rest }) => {
NoContent.defaultProps = { NoContent.defaultProps = {
content: { content: {
id: 'app.components.EmptyStateLayout.content-document', id: 'app.components.EmptyStateLayout.content-document',
defaultMessage: "You don't have any content yet...", defaultMessage: 'No content found',
values: {}, values: {},
}, },
}; };