- Merge client update into test-beta

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-01-18 19:20:08 -05:00
696 changed files with 92291 additions and 107075 deletions

View File

@@ -1,20 +1,20 @@
import { Form, Input } from "antd";
import {Form, Input} from "antd";
import React from "react";
export default function JobIntakeFormCheckboxComponent({ formItem, readOnly }) {
const { name, label, required } = formItem;
return (
<Form.Item
name={name}
label={label}
rules={[
{
required: required,
//message: t("general.validation.required"),
},
]}
>
<Input disabled={readOnly} />
</Form.Item>
);
export default function JobIntakeFormCheckboxComponent({formItem, readOnly}) {
const {name, label, required} = formItem;
return (
<Form.Item
name={name}
label={label}
rules={[
{
required: required,
//message: t("general.validation.required"),
},
]}
>
<Input disabled={readOnly}/>
</Form.Item>
);
}