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

@@ -3,6 +3,7 @@ import React from "react";
import { connect } from "react-redux";
import { withRouter } from "react-router-dom";
import UserForm from "./../components/UserForm";
import DeleteUser from "./../components/DeleteUser";
import type { User } from "@scm-manager/ui-types";
import {
modifyUser,
@@ -49,6 +50,8 @@ class EditUser extends React.Component<Props> {
user={user}
loading={loading}
/>
<hr />
<DeleteUser user={user} />
</div>
);
}