PublicDashboards: Not available page wording modifications (#64413)

This commit is contained in:
juanicabanas 2023-03-08 14:52:51 -03:00 committed by GitHub
parent a40f95e8a6
commit 2ddf105257
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,12 +21,12 @@ export const PublicDashboardNotAvailable = ({ paused }: { paused?: boolean }) =>
<Branding.LoginLogo className={loginStyles.loginLogo} /> <Branding.LoginLogo className={loginStyles.loginLogo} />
<p className={styles.title} data-testid={selectors.title}> <p className={styles.title} data-testid={selectors.title}>
{paused {paused
? 'The dashboard has been temporarily paused by the administrator.' ? 'This dashboard has been paused by the administrator'
: 'The dashboard your are trying to access does not exist.'} : 'The dashboard your are trying to access does not exist'}
</p> </p>
{paused && ( {paused && (
<p className={styles.description} data-testid={selectors.pausedDescription}> <p className={styles.description} data-testid={selectors.pausedDescription}>
Please check again soon. Try again later
</p> </p>
)} )}
</div> </div>