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
@@ -81,9 +81,7 @@ function buildSidebarRow(key: string, val: Value): TableRow {
|
||||
var parsed = JSON.parse(val.value);
|
||||
} catch (_error) {}
|
||||
if (parsed) {
|
||||
output = (
|
||||
<ManagedDataInspector data={parsed} expandRoot={true} collapsed />
|
||||
);
|
||||
output = <ManagedDataInspector data={parsed} expandRoot collapsed />;
|
||||
}
|
||||
}
|
||||
return {
|
||||
@@ -186,7 +184,7 @@ export default React.memo(function DatabaseDetailSidebar(
|
||||
);
|
||||
return (
|
||||
<DetailSidebar>
|
||||
<Panel title="Row details" collapsible={true}>
|
||||
<Panel title="Row details" collapsible>
|
||||
{onSave ? (
|
||||
<Layout.Right>
|
||||
<div />
|
||||
|
||||
Reference in New Issue
Block a user