IO-798 Reassign cancel button.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import { Button, Form, Popover, notification } from "antd";
|
import { Button, Form, Popover, notification, Space } from "antd";
|
||||||
import React, { useState, useMemo } from "react";
|
import React, { useState, useMemo } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import JobSearchSelect from "../job-search-select/job-search-select.component";
|
import JobSearchSelect from "../job-search-select/job-search-select.component";
|
||||||
@@ -100,9 +100,14 @@ export default function JobsDocumentsGalleryReassign({ galleryImages }) {
|
|||||||
<JobSearchSelect />
|
<JobSearchSelect />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Form>
|
</Form>
|
||||||
<Button onClick={() => form.submit()}>
|
<Space>
|
||||||
{t("general.actions.submit")}
|
<Button type="primary" onClick={() => form.submit()}>
|
||||||
</Button>
|
{t("general.actions.submit")}
|
||||||
|
</Button>
|
||||||
|
<Button onClick={() => setVisible(false)}>
|
||||||
|
{t("general.actions.cancel")}
|
||||||
|
</Button>
|
||||||
|
</Space>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user