mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-27 04:41:37 +01:00
[Glitch] The class
props should be className
Port 10df97c542
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
74fd46d3ab
commit
41f58e945c
2 changed files with 3 additions and 3 deletions
|
@ -100,7 +100,7 @@ class LinkFooter extends PureComponent {
|
||||||
{DividingCircle}
|
{DividingCircle}
|
||||||
<a href={source_url} rel='noopener noreferrer' target='_blank'><FormattedMessage id='footer.source_code' defaultMessage='View source code' /></a>
|
<a href={source_url} rel='noopener noreferrer' target='_blank'><FormattedMessage id='footer.source_code' defaultMessage='View source code' /></a>
|
||||||
{DividingCircle}
|
{DividingCircle}
|
||||||
<span class='version'>v{version}</span>
|
<span className='version'>v{version}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -57,10 +57,10 @@ class NavigationPanel extends Component {
|
||||||
<div className='navigation-panel'>
|
<div className='navigation-panel'>
|
||||||
{transientSingleColumn && (
|
{transientSingleColumn && (
|
||||||
<div className='navigation-panel__logo'>
|
<div className='navigation-panel__logo'>
|
||||||
<div class='switch-to-advanced'>
|
<div className='switch-to-advanced'>
|
||||||
{intl.formatMessage(messages.openedInClassicInterface)}
|
{intl.formatMessage(messages.openedInClassicInterface)}
|
||||||
{" "}
|
{" "}
|
||||||
<a href={`/deck${location.pathname}`} class='switch-to-advanced__toggle'>
|
<a href={`/deck${location.pathname}`} className='switch-to-advanced__toggle'>
|
||||||
{intl.formatMessage(messages.advancedInterface)}
|
{intl.formatMessage(messages.advancedInterface)}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue