Reduce line lengths

This commit is contained in:
Julia Friesel
2018-08-02 09:49:06 +02:00
parent 310683c5f8
commit c525812a0e
2 changed files with 6 additions and 4 deletions
+3 -1
View File
@@ -115,7 +115,9 @@ export default class CycleChart extends Component {
fill={styles.mucusIconShades[cycleDay.mucus.value]}
/> : null}
{y ? this.drawDotAndLines(y, cycleDay.temperature.exclude, index) : null}
{y ?
this.drawDotAndLines(y, cycleDay.temperature.exclude, index)
: null}
</G>
)
}