From 53c40ac9c41f9ce67bbd6299b358a8486b0bcf6c Mon Sep 17 00:00:00 2001 From: Felix Linker Date: Sun, 10 Jan 2021 21:59:22 +0100 Subject: [PATCH] Fix indentation --- src/app/components/Modification.jsx | 68 ++++++++++++++--------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/src/app/components/Modification.jsx b/src/app/components/Modification.jsx index f33c2754..50c0097e 100644 --- a/src/app/components/Modification.jsx +++ b/src/app/components/Modification.jsx @@ -69,40 +69,40 @@ export default class Modification extends TranslatedComponent { const { value: modifierValue, unit: modifierUnit } = m.getModifierFormatted(property); return ( - - - - this._toggleProperty()}/> - - - - - { - if (event.key == 'Enter') { - this._updateFinished(); - event.stopPropagation(); - } - }} - onValueChange={(inputValue) => { - if (inputValue.length <= 15) { - this.setState({ inputValue }); - } - }} /> - - - - {unit} - - {formats.f2(modifierValue)}{modifierUnit || ''} - + + + + this._toggleProperty()}/> + + + + + { + if (event.key == 'Enter') { + this._updateFinished(); + event.stopPropagation(); + } + }} + onValueChange={(inputValue) => { + if (inputValue.length <= 15) { + this.setState({ inputValue }); + } + }} /> + + + + {unit} + + {formats.f2(modifierValue)}{modifierUnit || ''} + ); } }