Fix plugin list style (#1235)

* Fix plugin list style

* Update test snapshots
This commit is contained in:
Dawid Tarasiuk 2021-07-16 12:55:48 +02:00 committed by GitHub
parent 58b9634f75
commit 9fad9b519e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 17 deletions

View file

@ -57,13 +57,10 @@ const PluginAvailabilityStatus: React.FC<PluginAvailabilityStatusProps> = ({
) : ( ) : (
<div className={classes.horizontalContainer}> <div className={classes.horizontalContainer}>
<Typography> <Typography>
{intl.formatMessage(messages.channelTitle, { {`${intl.formatMessage(messages.channelTitle, {
activeChannelsCount activeChannelsCount
})} })}/${getAllChannelConfigsCount(channelConfigurations)}`}
</Typography> </Typography>
<Typography color="textSecondary">{`/${getAllChannelConfigsCount(
channelConfigurations
)}`}</Typography>
</div> </div>
) )
} }

View file

@ -166003,12 +166003,7 @@ exports[`Storyshots Views / Plugins / Plugin list default 1`] = `
<div <div
class="MuiTypography-root-id MuiTypography-body1-id" class="MuiTypography-root-id MuiTypography-body1-id"
> >
Active in 1 Active in 1/1
</div>
<div
class="MuiTypography-root-id MuiTypography-body1-id MuiTypography-colorTextSecondary-id"
>
/1
</div> </div>
</div> </div>
</div> </div>
@ -166069,12 +166064,7 @@ exports[`Storyshots Views / Plugins / Plugin list default 1`] = `
<div <div
class="MuiTypography-root-id MuiTypography-body1-id" class="MuiTypography-root-id MuiTypography-body1-id"
> >
Active in 1 Active in 1/1
</div>
<div
class="MuiTypography-root-id MuiTypography-body1-id MuiTypography-colorTextSecondary-id"
>
/1
</div> </div>
</div> </div>
</div> </div>