Remove doubled field/column

This commit is contained in:
Florian Scholdei
2019-10-29 14:32:27 +01:00
parent f496279592
commit e74f8a4d4e
2 changed files with 2 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ class AddEntryToTableField extends React.Component<Props, State> {
render() {
const { disabled, buttonLabel, fieldLabel, errorMessage, helpText } = this.props;
return (
<div className="field">
<>
<InputField
label={fieldLabel}
errorMessage={errorMessage}
@@ -53,7 +53,7 @@ class AddEntryToTableField extends React.Component<Props, State> {
action={this.addButtonClicked}
disabled={disabled || this.state.entryToAdd === "" || !this.isValid()}
/>
</div>
</>
);
}

View File

@@ -25,8 +25,6 @@ class BaseUrlSettings extends React.Component<Props> {
disabled={!hasUpdatePermission}
helpText={t("help.baseUrlHelpText")}
/>
</div>
<div className="column is-half">
<Checkbox
checked={forceBaseUrl}
label={t("base-url-settings.force-base-url")}