1
0
mirror of https://github.com/flarum/core.git synced 2025-08-07 00:47:00 +02:00

Resolve import typo

This commit is contained in:
Alexander Skvortsov
2020-08-24 20:09:10 -04:00
committed by Franz Liedke
parent fd2dcd38d6
commit 955c8121d3

View File

@@ -6,7 +6,7 @@ import SelectDropdown from '../../common/components/SelectDropdown';
import LinkButton from '../../common/components/LinkButton';
import Separator from '../../common/components/Separator';
import listItems from '../../common/helpers/listItems';
import UserPageSidebar from './AffixedSidebar';
import AffixedSidebar from './AffixedSidebar';
/**
* The `UserPage` component shows a user's profile. It can be extended to show
@@ -42,11 +42,11 @@ export default class UserPage extends Page {
/>,
<div className="container">
<div className="sideNavContainer">
<UserPageSidebar>
<AffixedSidebar>
<nav className="sideNav UserPage-nav">
<ul>{listItems(this.sidebarItems().toArray())}</ul>
</nav>
</UserPageSidebar>
</AffixedSidebar>
<div className="sideNavOffset UserPage-content">{this.content()}</div>
</div>
</div>,