prettier fix

This commit is contained in:
Peter Holmberg
2019-02-21 16:07:07 +01:00
parent 362829d7ad
commit 73b4d817e4
2 changed files with 3 additions and 3 deletions
@@ -19,8 +19,8 @@ export class VizRepeater extends PureComponent<Props> {
render() {
const { children, orientation, height, timeSeries, width } = this.props;
const vizContainerWidth = 1 / timeSeries.length * 100;
const vizContainerHeight = 1 / timeSeries.length * 100;
const vizContainerWidth = (1 / timeSeries.length) * 100;
const vizContainerHeight = (1 / timeSeries.length) * 100;
const repeatingVizWidth = Math.floor(width / timeSeries.length) - 10; // make Gauge slightly smaller than panel.
const repeatingVizHeight = Math.floor(height / timeSeries.length) - 10;
@@ -28,7 +28,7 @@ class PanelPluginNotFound extends PureComponent<Props> {
return (
<div style={style}>
<AlertBox severity={AppNotificationSeverity.Error} title={`Panel plugin not found: ${this.props.pluginId})`} />
<AlertBox severity={AppNotificationSeverity.Error} title={`Panel plugin not found: ${this.props.pluginId}`} />
</div>
);
}