mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
fix spacing
This commit is contained in:
parent
a7eb1801e3
commit
5a942c5f73
1 changed files with 4 additions and 4 deletions
|
|
@ -184,20 +184,20 @@ const Settings = () => {
|
|||
</Button>
|
||||
<div className={styles['spacing']} />
|
||||
<div className={styles['version-info-label']} title={process.env.VERSION}>
|
||||
{`${t('SETTINGS_APP_VERSION')} : ${process.env.VERSION}`}
|
||||
{`${t('SETTINGS_APP_VERSION')}: ${process.env.VERSION}`}
|
||||
</div>
|
||||
<div className={styles['version-info-label']} title={process.env.COMMIT_HASH}>
|
||||
{`${t('SETTINGS_BUILD_VERSION')} : ${process.env.COMMIT_HASH}`}
|
||||
{`${t('SETTINGS_BUILD_VERSION')}: ${process.env.COMMIT_HASH}`}
|
||||
</div>
|
||||
{
|
||||
streamingServer.settings !== null && streamingServer.settings.type === 'Ready' ?
|
||||
<div className={styles['version-info-label']} title={streamingServer.settings.content.serverVersion}>{`${t('SETTINGS_SERVER_VERSION')} : ${streamingServer.settings.content.serverVersion}`}</div>
|
||||
<div className={styles['version-info-label']} title={streamingServer.settings.content.serverVersion}>{`${t('SETTINGS_SERVER_VERSION')}: ${streamingServer.settings.content.serverVersion}`}</div>
|
||||
:
|
||||
null
|
||||
}
|
||||
{
|
||||
typeof shell?.transport?.props?.shellVersion === 'string' ?
|
||||
<div className={styles['version-info-label']} title={shell.transport.props.shellVersion}>{`${t('SETTINGS_APP_VERSION')} : ${shell.transport.props.shellVersion}`}</div>
|
||||
<div className={styles['version-info-label']} title={shell.transport.props.shellVersion}>{`${t('SETTINGS_APP_VERSION')}: ${shell.transport.props.shellVersion}`}</div>
|
||||
:
|
||||
null
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue