fixed some flow warnings

This commit is contained in:
Sebastian Sdorra
2018-07-24 16:39:28 +02:00
parent 7bd7b70031
commit 65b69d7c6f
3 changed files with 7 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
{
"repositories": {
"title": "Repositories",
"subtitle": "Repositories will be shown here"
"subtitle": "Repositories will be shown here",
"body": "Coming soon ..."
}
}

View File

@@ -14,7 +14,9 @@ class Repositories extends React.Component<Props> {
<Page
title={t("repositories.title")}
subtitle={t("repositories.subtitle")}
/>
>
{t("repositories.body")}
</Page>
);
}
}

View File

@@ -23,7 +23,8 @@ class UserForm extends React.Component<Props, User> {
mail: "",
password: "",
admin: false,
active: false
active: false,
_links: {}
};
}