Skip to content

Commit

Permalink
back out functional change
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan committed Jul 29, 2021
1 parent d74cc9e commit 1c96876
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export type Props = ReportingPanelProps & { intl: InjectedIntl };
interface State {
isStale: boolean;
absoluteUrl: string;
layoutId?: string;
layoutId: string;
objectType: string;
}

Expand All @@ -61,7 +61,7 @@ class ReportingPanelContentUi extends Component<Props, State> {
this.state = {
isStale: false,
absoluteUrl: this.getAbsoluteReportGenerationUrl(props),
layoutId: this.props.layoutId,
layoutId: '',
objectType,
};
}
Expand Down

0 comments on commit 1c96876

Please sign in to comment.