v0.4.14
This commit is contained in:
parent
04c62ccbb0
commit
6ff7585133
@ -21,4 +21,4 @@ version: 0.0.1
|
||||
# incremented each time you make changes to the application. Versions are not expected to
|
||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||
# It is recommended to use it with quotes.
|
||||
appVersion: 0.4.13
|
||||
appVersion: 0.4.14
|
||||
|
@ -45,12 +45,12 @@ export default class ClientSection extends React.Component<IProps, IState> {
|
||||
}
|
||||
|
||||
private renderCustomerFolders() {
|
||||
const output = this.props.folder.office_folder_has_customers?.map((folderHasCustomer) => {
|
||||
const output = this.props.folder.office_folder_has_customers?.map((folderHasCustomer, key) => {
|
||||
if (!folderHasCustomer.customer) return null;
|
||||
// TODO : Les documents ASKED fonctionne mais les autres documents ne doivcent etre seulement ceux qui correspondent au folder
|
||||
return (
|
||||
// <div className={classes["user-folder"]} key={folderHasCustomer.customer.uid}>
|
||||
<UserFolder folder={this.props.folder} customer={folderHasCustomer.customer} />
|
||||
<UserFolder folder={this.props.folder} customer={folderHasCustomer.customer} key={key} />
|
||||
// </div>
|
||||
);
|
||||
});
|
||||
|
@ -1,7 +1,6 @@
|
||||
import Button, { EButtonVariant } from "@Front/Components/DesignSystem/Button";
|
||||
import Form from "@Front/Components/DesignSystem/Form";
|
||||
import InputField from "@Front/Components/DesignSystem/Form/Elements/InputField";
|
||||
import Select, { IOption } from "@Front/Components/DesignSystem/Select";
|
||||
import Typography, { ITypo } from "@Front/Components/DesignSystem/Typography";
|
||||
import BackArrow from "@Front/Components/Elements/BackArrow";
|
||||
import DefaultNotaryDashboard, { IDashBoardFolder } from "@Front/Components/LayoutTemplates/DefaultNotaryDashboard";
|
||||
@ -54,7 +53,6 @@ class UpdateClientClass extends BasePage<IProps, IState> {
|
||||
<BackArrow url={backwardPath} />
|
||||
</div>
|
||||
<Typography typo={ITypo.H1Bis}>Modifier les informations du client</Typography>
|
||||
|
||||
<Form className={classes["form"]}>
|
||||
<div className={classes["content"]}>
|
||||
<InputField name="input field" fakeplaceholder="Nom" onChange={this.onChangeNameInput} />
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
"version": "v0.4.13"
|
||||
"version": "v0.4.14"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user