Settings -> Profile
This commit is contained in:
@@ -54,6 +54,9 @@ class SettingsSidebar extends React.Component<Props> {
|
|||||||
</Section>
|
</Section>
|
||||||
<Section>
|
<Section>
|
||||||
<Header>Team</Header>
|
<Header>Team</Header>
|
||||||
|
<SidebarLink to="/settings/details" icon={<SettingsIcon />}>
|
||||||
|
Details
|
||||||
|
</SidebarLink>
|
||||||
<SidebarLink to="/settings/members" icon={<UserIcon />}>
|
<SidebarLink to="/settings/members" icon={<UserIcon />}>
|
||||||
Members
|
Members
|
||||||
</SidebarLink>
|
</SidebarLink>
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ type Props = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
@observer
|
@observer
|
||||||
class Settings extends React.Component<Props> {
|
class Profile extends React.Component<Props> {
|
||||||
timeout: TimeoutID;
|
timeout: TimeoutID;
|
||||||
|
|
||||||
@observable name: string;
|
@observable name: string;
|
||||||
@@ -166,4 +166,4 @@ const StyledInput = styled(Input)`
|
|||||||
max-width: 350px;
|
max-width: 350px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export default inject('auth', 'errors')(Settings);
|
export default inject('auth', 'errors')(Profile);
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
// @flow
|
// @flow
|
||||||
import Settings from './Settings';
|
import Profile from './Profile';
|
||||||
export default Settings;
|
export default Profile;
|
||||||
|
|||||||
Reference in New Issue
Block a user