Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Townsend <[email protected]>
  • Loading branch information
robintown committed Aug 16, 2021
1 parent 62f4b05 commit f37670c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/views/spaces/SpaceTreeLevel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,13 @@ export class SpaceItem extends React.PureComponent<IItemProps, IItemState> {
/> : null;

return (
<li {...otherProps} className={itemClasses} ref={innerRef} aria-expanded={!collapsed} role="treeitem">
<li
{...otherProps}
className={itemClasses}
ref={innerRef}
aria-expanded={!this.state.collapsed}
role="treeitem"
>
<SpaceButton
space={space}
className={isInvite ? "mx_SpaceButton_invite" : undefined}
Expand Down

0 comments on commit f37670c

Please sign in to comment.