mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
20.04.2019 adbd847629f5fd7523e15d1d2094678914751904
return React.Fragment instead of div.
1 files modified
4 ■■■■ changed files
borgbutler-webapp/src/components/views/config/ConfigurationServerTab.jsx 4 ●●●● patch | view | raw | blame | history
borgbutler-webapp/src/components/views/config/ConfigurationServerTab.jsx
@@ -128,7 +128,7 @@
            borgInfoMessage = borgVersion.statusMessage;
        }
        return (
            <div>
            <React.Fragment>
                <form>
                    <FormGroup>
                        <FormLabel>{'Borg command'}</FormLabel>
@@ -182,7 +182,7 @@
                                      onChange={this.handleCheckboxChange}/>
                    </FormLabelField>
                </form>
            </div>
            </React.Fragment>
        );
    }
}