About: Remove leading dash for app version in Web.

This completes the change in [b12c297a] by handling the Web case.
This commit is contained in:
infiinte-persistence 2020-06-11 14:42:04 +02:00 committed by Sean Yesmunt
parent 0de6096b5e
commit a461c97962

View file

@ -219,7 +219,14 @@ class HelpPage extends React.PureComponent<Props, State> {
<tbody>
<tr>
<td>{__('App')}</td>
<td>{this.state.uiVersion} - <Button button="link" label={__('Changelog')} href="https://github.com/lbryio/lbry-desktop/blob/master/CHANGELOG.md"/></td>
<td>
{this.state.uiVersion ? this.state.uiVersion + ' - ' : ''}
<Button
button="link"
label={__('Changelog')}
href="https://github.com/lbryio/lbry-desktop/blob/master/CHANGELOG.md"
/>
</td>
</tr>
<tr>
<td>{__('Daemon (lbrynet)')}</td>