Added association tracking
This commit is contained in:
@@ -44,7 +44,14 @@ export default connect(
|
||||
|
||||
return (
|
||||
<div>
|
||||
<AlertComponent message={"hi"} />
|
||||
{isFieldsTouched() ? (
|
||||
//TODO: Appropriate Error
|
||||
<AlertComponent
|
||||
message={t("jobs.errors.validation")}
|
||||
onClick={() => resetFields()}
|
||||
/>
|
||||
) : null}
|
||||
|
||||
<Form onSubmit={handleSubmit} autoComplete={"no"}>
|
||||
<Form.Item label={t("user.fields.displayname")}>
|
||||
{getFieldDecorator("displayname", {
|
||||
@@ -58,7 +65,7 @@ export default connect(
|
||||
htmlType="submit"
|
||||
onClick={handleSubmit}
|
||||
>
|
||||
Save
|
||||
{t("user.actions.updateprofile")}
|
||||
</Button>
|
||||
</Form>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user