clarified langs, added repo settings menu, changed git config binding, fixed small css issue with div in navi

This commit is contained in:
Florian Scholdei
2019-01-18 17:28:38 +01:00
parent df5434147c
commit 9dc7882c54
14 changed files with 116 additions and 72 deletions

View File

@@ -11,7 +11,6 @@ import {
validation as validator
} from "@scm-manager/ui-components";
import * as userValidator from "./userValidation";
import DeleteUser from "./DeleteUser";
type Props = {
submitForm: User => void,
@@ -159,13 +158,6 @@ class UserForm extends React.Component<Props, State> {
</div>
</div>
</form>
<hr />
<Subtitle subtitle={t("single-user.delete.subtitle")} />
<div className="columns">
<div className="column">
<DeleteUser user={user} />
</div>
</div>
</>
);
}