From d2843879f0effd489f36e20163fb52868e2decb3 Mon Sep 17 00:00:00 2001 From: corpglory-dev Date: Tue, 5 Mar 2019 17:39:51 +0300 Subject: [PATCH] prettier --- public/app/plugins/panel/piechart/PiechartOptionsBox.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app/plugins/panel/piechart/PiechartOptionsBox.tsx b/public/app/plugins/panel/piechart/PiechartOptionsBox.tsx index e5979e76be9..aadcc3edf77 100644 --- a/public/app/plugins/panel/piechart/PiechartOptionsBox.tsx +++ b/public/app/plugins/panel/piechart/PiechartOptionsBox.tsx @@ -17,7 +17,8 @@ const piechartOptions = [{ value: PiechartType.PIE, label: 'Pie' }, { value: Pie export class PiechartOptionsBox extends PureComponent> { onPieTypeChange = ({ target }) => this.props.onOptionsChange({ ...this.props.options, pieType: target.value }); - onStrokeWidthChange = ({ target }) => this.props.onOptionsChange({ ...this.props.options, strokeWidth: target.value }); + onStrokeWidthChange = ({ target }) => + this.props.onOptionsChange({ ...this.props.options, strokeWidth: target.value }); render() { const { options } = this.props;