From e054384eb86f7c46eda005e44a177ca3929c67b9 Mon Sep 17 00:00:00 2001 From: Daniel Stefan Date: Tue, 5 Apr 2022 19:24:25 +0300 Subject: [PATCH] feat: add labels logic --- src/components/forms/CreateUnitLabelsForm.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/components/forms/CreateUnitLabelsForm.js b/src/components/forms/CreateUnitLabelsForm.js index 831a95b0..17a2d432 100644 --- a/src/components/forms/CreateUnitLabelsForm.js +++ b/src/components/forms/CreateUnitLabelsForm.js @@ -198,6 +198,11 @@ const CreateUnitLabelsForm = ({ value, onChange }) => { }} /> + {selectedWayToAddLabel === null && ( + + + + )} )} @@ -232,6 +237,11 @@ const CreateUnitLabelsForm = ({ value, onChange }) => { }} /> + {selectedLabelOption === null && ( + + + + )} )} @@ -268,6 +278,11 @@ const CreateUnitLabelsForm = ({ value, onChange }) => { }} /> + {selectedProjectLabelOption === null && ( + + + + )} )}