Enforce react/jsx-boolean-value
Summary: yarn fix results. Reviewed By: nikoant Differential Revision: D28329714 fbshipit-source-id: 564aa24bcdb4bc6cdea67dfad10a077a9c817a2d
This commit is contained in:
committed by
Facebook GitHub Bot
parent
8ba27f5487
commit
69c7876be9
@@ -32,7 +32,7 @@ test('changing collapsed property works', async () => {
|
||||
res.rerender(<DataInspector data={json} collapsed={false} expandRoot />);
|
||||
await res.findByText(/cool/);
|
||||
|
||||
res.rerender(<DataInspector data={json} collapsed={true} expandRoot />);
|
||||
res.rerender(<DataInspector data={json} collapsed expandRoot />);
|
||||
expect(res.queryAllByText(/cool/).length).toBe(0);
|
||||
});
|
||||
|
||||
|
||||
@@ -210,7 +210,7 @@ function TableHeadColumn({
|
||||
if (isResizable) {
|
||||
children = (
|
||||
<TableHeaderColumnInteractive
|
||||
grow={true}
|
||||
grow
|
||||
resizable={RIGHT_RESIZABLE}
|
||||
onResize={onResize}
|
||||
minWidth={20}>
|
||||
|
||||
Reference in New Issue
Block a user