From 62f38cc36fec383552eeac023ac21190044fb448 Mon Sep 17 00:00:00 2001 From: Maxime Lalo Date: Wed, 4 Oct 2023 16:53:43 +0200 Subject: [PATCH] :sparkles: Block add customers to an anchored folder --- .../FolderInformation/ClientSection/index.tsx | 24 +++++++++++-------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/src/front/Components/Layouts/Folder/FolderInformation/ClientSection/index.tsx b/src/front/Components/Layouts/Folder/FolderInformation/ClientSection/index.tsx index 3ef81741..b4920f84 100644 --- a/src/front/Components/Layouts/Folder/FolderInformation/ClientSection/index.tsx +++ b/src/front/Components/Layouts/Folder/FolderInformation/ClientSection/index.tsx @@ -37,11 +37,13 @@ export default class ClientSection extends React.Component { {this.doesFolderHaveCustomer() ? ( <>
{this.renderCustomerFolders()}
- - - + {this.props.anchorStatus === AnchorStatus.NOT_ANCHORED && ( + + + + )} ) : (
@@ -50,11 +52,13 @@ export default class ClientSection extends React.Component { Aucun client n'est associƩ au dossier.
- - - + {this.props.anchorStatus === AnchorStatus.NOT_ANCHORED && ( + + + + )} )}