Fix typing error
This commit is contained in:
parent
900c234434
commit
2a8881f753
1 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ import RoomListLayoutStore from "../../../stores/room-list/RoomListLayoutStore";
|
||||||
import { arrayHasOrderChange } from "../../../utils/arrays";
|
import { arrayHasOrderChange } from "../../../utils/arrays";
|
||||||
import { objectExcluding, objectHasValueChange } from "../../../utils/objects";
|
import { objectExcluding, objectHasValueChange } from "../../../utils/objects";
|
||||||
import TemporaryTile from "./TemporaryTile";
|
import TemporaryTile from "./TemporaryTile";
|
||||||
import { NotificationState } from "../../../stores/notifications/NotificationState";
|
import { ListNotificationState } from "../../../stores/notifications/ListNotificationState";
|
||||||
|
|
||||||
const SHOW_N_BUTTON_HEIGHT = 28; // As defined by CSS
|
const SHOW_N_BUTTON_HEIGHT = 28; // As defined by CSS
|
||||||
const RESIZE_HANDLE_HEIGHT = 4; // As defined by CSS
|
const RESIZE_HANDLE_HEIGHT = 4; // As defined by CSS
|
||||||
|
@ -101,7 +101,7 @@ export default class RoomSublist extends React.Component<IProps, IState> {
|
||||||
private layout: ListLayout;
|
private layout: ListLayout;
|
||||||
private heightAtStart: number;
|
private heightAtStart: number;
|
||||||
private isBeingFiltered: boolean;
|
private isBeingFiltered: boolean;
|
||||||
private notificationState: NotificationState;
|
private notificationState: ListNotificationState;
|
||||||
|
|
||||||
constructor(props: IProps) {
|
constructor(props: IProps) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue