From ec423572aaf8ecf80a409fd9a03d73b5d31e444f Mon Sep 17 00:00:00 2001 From: Blaster4385 Date: Sat, 13 Aug 2022 21:40:17 +0530 Subject: Implemented update UI --- client/src/components/LabelCard/LabelCard.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'client/src/components/LabelCard/LabelCard.jsx') diff --git a/client/src/components/LabelCard/LabelCard.jsx b/client/src/components/LabelCard/LabelCard.jsx index 42ba7bf..dd02050 100644 --- a/client/src/components/LabelCard/LabelCard.jsx +++ b/client/src/components/LabelCard/LabelCard.jsx @@ -1,7 +1,7 @@ import React from 'react' import styles from './LabelCard.module.css' -const LabelCard = ({ id, name, value, title, image, onChange }) => { +const LabelCard = ({ id, name, value, title, image, onChange, readOnly }) => { return (
) -- cgit