mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 06:55:47 +01:00
Removed creationDate & lastModifiedDate from Group; fixed flow issuses
This commit is contained in:
@@ -18,7 +18,18 @@ export interface State {
|
||||
class GroupForm extends React.Component<Props, State> {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = {};
|
||||
this.state = {
|
||||
group: {
|
||||
name: "",
|
||||
description: "",
|
||||
_embedded: {
|
||||
members: []
|
||||
},
|
||||
_links: {},
|
||||
members: [],
|
||||
type: "",
|
||||
}
|
||||
};
|
||||
}
|
||||
onSubmit = (event: Event) => {
|
||||
event.preventDefault();
|
||||
|
||||
Reference in New Issue
Block a user