(core) Editing text for viewers on empty site

Summary: Small tweaks for text that viewers see on empty site.

Test Plan: Updated tests.

Reviewers: dsagal

Reviewed By: dsagal

Differential Revision: https://phab.getgrist.com/D3577
This commit is contained in:
Jarosław Sadziński 2022-08-09 19:51:30 +02:00
parent 9e4d802405
commit f215ec8b24

View File

@ -37,7 +37,7 @@ function makeViewerTeamSiteIntro(homeModel: HomeModel) {
const docLink = (dom.maybe(personalOrg, org => {
return cssLink(
urlState().setLinkUrl({org: org.domain ?? undefined}),
'free, personal site',
'personal site',
testId('welcome-personal-url'));
}));
return [
@ -52,7 +52,7 @@ function makeViewerTeamSiteIntro(homeModel: HomeModel) {
"You have read-only access to this site. Currently there are no documents.", dom('br'),
"Any documents created in this site will appear here."),
cssIntroLine(
'Interested in using Grist outside of your team? Visit your ', docLink, '.',
'Interested in using Grist outside of your team? Visit your free ', docLink, '.',
testId('welcome-text')
)
];