Fix warning when opening rhs (#5335)
* Fix: `Warning: Failed prop type: Invalid prop `isCommentsPage` of type `string` supplied to `SearchBar`, expected `boolean`.`
Этот коммит содержится в:
коммит произвёл
George Goldberg
родитель
f1c9ae5686
Коммит
ff2a36e9c0
@@ -335,7 +335,7 @@ export default class RhsThread extends React.Component {
|
|||||||
var currentId = UserStore.getCurrentId();
|
var currentId = UserStore.getCurrentId();
|
||||||
var searchForm;
|
var searchForm;
|
||||||
if (currentId != null) {
|
if (currentId != null) {
|
||||||
searchForm = <SearchBox isCommentsPage='true'/>;
|
searchForm = <SearchBox isCommentsPage={true}/>;
|
||||||
}
|
}
|
||||||
|
|
||||||
let profile;
|
let profile;
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user