* Fix: `Warning: Failed prop type: Invalid prop `isCommentsPage` of
  type `string` supplied to `SearchBar`, expected `boolean`.`
Этот коммит содержится в:
Robin Naundorf
2017-02-08 17:11:06 +01:00
коммит произвёл George Goldberg
родитель f1c9ae5686
Коммит ff2a36e9c0

Просмотреть файл

@@ -335,7 +335,7 @@ export default class RhsThread extends React.Component {
var currentId = UserStore.getCurrentId();
var searchForm;
if (currentId != null) {
searchForm = <SearchBox isCommentsPage='true'/>;
searchForm = <SearchBox isCommentsPage={true}/>;
}
let profile;