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
@@ -191,7 +191,7 @@ export default class ImagesCacheOverview extends PureComponent<
|
||||
|
||||
return (
|
||||
<ImagesCacheOverview.Container
|
||||
grow={true}
|
||||
grow
|
||||
onKeyDown={this.onKeyDown}
|
||||
tabIndex={0}>
|
||||
<Toolbar position="top">
|
||||
|
||||
@@ -100,10 +100,7 @@ class EventDetails extends Component<{
|
||||
const {event} = this.props;
|
||||
|
||||
return (
|
||||
<Panel
|
||||
heading={<RequestHeader event={event} />}
|
||||
floating={false}
|
||||
padded={true}>
|
||||
<Panel heading={<RequestHeader event={event} />} floating={false} padded>
|
||||
<p>
|
||||
<DataDescriptionKey>Attribution</DataDescriptionKey>
|
||||
<span key="sep">: </span>
|
||||
|
||||
@@ -115,15 +115,14 @@ export function plugin(client: PluginClient<Events, Methods>) {
|
||||
message: (
|
||||
<Fragment>
|
||||
<InlineFlexRow>
|
||||
CloseableReference leaked for{' '}
|
||||
<Text code={true}>{event.className}</Text>
|
||||
CloseableReference leaked for <Text code>{event.className}</Text>
|
||||
(identity hashcode: {event.identityHashCode}).
|
||||
</InlineFlexRow>
|
||||
<InlineFlexRow>
|
||||
<Text bold={true}>Stacktrace:</Text>
|
||||
<Text bold>Stacktrace:</Text>
|
||||
</InlineFlexRow>
|
||||
<InlineFlexRow>
|
||||
<Text code={true}>{event.stacktrace || '<unavailable>'}</Text>
|
||||
<Text code>{event.stacktrace || '<unavailable>'}</Text>
|
||||
</InlineFlexRow>
|
||||
</Fragment>
|
||||
),
|
||||
@@ -466,7 +465,7 @@ function Sidebar() {
|
||||
|
||||
if (currentSelectedImage == null) {
|
||||
return (
|
||||
<EmptySidebar grow={true}>
|
||||
<EmptySidebar grow>
|
||||
<Text align="center">
|
||||
Select an image to see the events associated with it.
|
||||
</Text>
|
||||
|
||||
Reference in New Issue
Block a user