diff --git a/bodyshop_translations.babel b/bodyshop_translations.babel index c9ef73550..f3058c0ef 100644 --- a/bodyshop_translations.babel +++ b/bodyshop_translations.babel @@ -4169,9 +4169,56 @@ + + fields + + + completedon + false + + + + + + en-US + false + + + es-MX + false + + + fr-CA + false + + + + + labels + + noneselected + false + + + + + + en-US + false + + + es-MX + false + + + fr-CA + false + + + title false @@ -12480,6 +12527,27 @@ + + shop_csi + false + + + + + + en-US + false + + + es-MX + false + + + fr-CA + false + + + shop_templates false @@ -15698,6 +15766,27 @@ + + shop-csi + false + + + + + + en-US + false + + + es-MX + false + + + fr-CA + false + + + shop-templates false @@ -16246,6 +16335,27 @@ + + shop-csi + false + + + + + + en-US + false + + + es-MX + false + + + fr-CA + false + + + shop-templates false diff --git a/client/src/components/accounting-payables-table/accounting-payables-table.component.jsx b/client/src/components/accounting-payables-table/accounting-payables-table.component.jsx index 87598f74b..ffe3badfa 100644 --- a/client/src/components/accounting-payables-table/accounting-payables-table.component.jsx +++ b/client/src/components/accounting-payables-table/accounting-payables-table.component.jsx @@ -128,7 +128,7 @@ export default function AccountingPayablesTableComponent({ ), }, ]; - console.log("transInProgress", transInProgress); + const handleSearch = (e) => { setState({ ...state, search: e.target.value }); }; diff --git a/client/src/components/config-form-components/checkbox/checkbox.component.jsx b/client/src/components/config-form-components/checkbox/checkbox.component.jsx index 5e80707bd..8b407dc65 100644 --- a/client/src/components/config-form-components/checkbox/checkbox.component.jsx +++ b/client/src/components/config-form-components/checkbox/checkbox.component.jsx @@ -2,21 +2,22 @@ import React from "react"; import { Form, Checkbox } from "antd"; import { useTranslation } from "react-i18next"; -export default function JobIntakeFormCheckboxComponent({ formItem }) { +export default function JobIntakeFormCheckboxComponent({ formItem, readOnly }) { const { name, label, required } = formItem; const { t } = useTranslation(); return ( - + ]} + > + ); } diff --git a/client/src/components/config-form-components/config-form-components.component.jsx b/client/src/components/config-form-components/config-form-components.component.jsx index 419689402..0961de1dc 100644 --- a/client/src/components/config-form-components/config-form-components.component.jsx +++ b/client/src/components/config-form-components/config-form-components.component.jsx @@ -5,21 +5,23 @@ import Text from "./text/text.component"; import Textarea from "./textarea/textarea.component"; import Rate from "./rate/rate.component"; -export default function ConfirmFormComponents({ componentList }) { +export default function ConfirmFormComponents({ componentList, readOnly }) { return (
{componentList.map((f, idx) => { switch (f.type) { case "checkbox": - return ; + return ( + + ); case "slider": - return ; + return ; case "text": - return ; + return ; case "textarea": - return