From 593b40ba66e8bb5104a187659bb25f2361c545d5 Mon Sep 17 00:00:00 2001 From: Jack Reed <phillipjreed@gmail.com> Date: Wed, 15 Apr 2020 07:29:06 -0600 Subject: [PATCH] Remove inline attribute that is no longer available --- src/components/WindowAuthenticationControl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/WindowAuthenticationControl.js b/src/components/WindowAuthenticationControl.js index 97c33a459..95f9d6cf1 100644 --- a/src/components/WindowAuthenticationControl.js +++ b/src/components/WindowAuthenticationControl.js @@ -91,7 +91,7 @@ export class WindowAuthenticationControl extends Component { <Paper square elevation={4} color="secondary" classes={{ root: classes.paper }}> <Button fullWidth className={classes.topBar} onClick={hasCollapsedContent ? this.handleClickOpen : this.handleConfirm} component="div" color="inherit"> <LockIcon className={classes.icon} /> - <Typography className={classes.label} component="h3" variant="body1" color="inherit" inline> + <Typography className={classes.label} component="h3" variant="body1" color="inherit"> <SanitizedHtml htmlString={(isInFailureState ? failureHeader : label) || t('authenticationRequired')} ruleSet="iiif" /> </Typography> <span className={classes.fauxButton}> -- GitLab