Fix lint trailing spaces
parent
82c1d73698
commit
a4ccf74bb9
|
|
@ -75,7 +75,7 @@ const UnsupportedBrowser = ({
|
||||||
{
|
{
|
||||||
dense=true;
|
dense=true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog
|
<Dialog
|
||||||
open={open}
|
open={open}
|
||||||
|
|
@ -85,7 +85,7 @@ const UnsupportedBrowser = ({
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<DialogTitle id='form-dialog-title'>
|
<DialogTitle id='form-dialog-title'>
|
||||||
{!webrtcUnavailable &&
|
{!webrtcUnavailable &&
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='unsupportedBrowser.titleUnsupportedBrowser'
|
id='unsupportedBrowser.titleUnsupportedBrowser'
|
||||||
defaultMessage='Detected unsupported browser!'
|
defaultMessage='Detected unsupported browser!'
|
||||||
|
|
@ -98,20 +98,20 @@ const UnsupportedBrowser = ({
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
</DialogTitle>
|
</DialogTitle>
|
||||||
<DialogContent dividers={dividers} >
|
<DialogContent dividers={dividers} >
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='unsupportedBrowser.bodyText'
|
id='unsupportedBrowser.bodyText'
|
||||||
defaultMessage='This meeting service requires a
|
defaultMessage='This meeting service requires a
|
||||||
functionality that is not supported by your browser.
|
functionality that is not supported by your browser.
|
||||||
Please upgrade, or switch to a different browser, or
|
Please upgrade, or switch to a different browser, or
|
||||||
check your settings. Supported browsers:'
|
check your settings. Supported browsers:'
|
||||||
/>
|
/>
|
||||||
<Grid container spacing={2} justify='center' alignItems='center'>
|
<Grid container spacing={2} justify='center' alignItems='center'>
|
||||||
<Grid item xs={12} md={7}>
|
<Grid item xs={12} md={7}>
|
||||||
|
|
||||||
<div className={classes.list}>
|
<div className={classes.list}>
|
||||||
<List dense={dense}>
|
<List dense={dense}>
|
||||||
{supportedBrowsers.map((browser, index) =>
|
{supportedBrowsers.map((browser, index) =>
|
||||||
{
|
{
|
||||||
const supportedBrowser = `${browser.vendor} ${browser.name}`;
|
const supportedBrowser = `${browser.vendor} ${browser.name}`;
|
||||||
const supportedVersion = `${browser.version}+`;
|
const supportedVersion = `${browser.version}+`;
|
||||||
|
|
@ -119,12 +119,12 @@ const UnsupportedBrowser = ({
|
||||||
return (
|
return (
|
||||||
<ListItem key={index}>
|
<ListItem key={index}>
|
||||||
<ListItemAvatar>
|
<ListItemAvatar>
|
||||||
<Avatar>
|
<Avatar>
|
||||||
<WebAssetIcon />
|
<WebAssetIcon />
|
||||||
</Avatar>
|
</Avatar>
|
||||||
</ListItemAvatar>
|
</ListItemAvatar>
|
||||||
<ListItemText
|
<ListItemText
|
||||||
primary={supportedBrowser}
|
primary={supportedBrowser}
|
||||||
secondary={supportedVersion}
|
secondary={supportedVersion}
|
||||||
/>
|
/>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
|
|
@ -140,7 +140,7 @@ const UnsupportedBrowser = ({
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue