Adding placeholder and adding in TagInput a background color.
This commit is contained in:
parent
679ae95b8c
commit
6598ec9f73
@ -408,6 +408,7 @@ const ManageContact = ({ contactId, closeModal }) => {
|
|||||||
label="Tags"
|
label="Tags"
|
||||||
options={contactTags}
|
options={contactTags}
|
||||||
isRequired={true}
|
isRequired={true}
|
||||||
|
placeholder="Enter Tag"
|
||||||
/>
|
/>
|
||||||
{errors.tags && (
|
{errors.tags && (
|
||||||
<small className="danger-text">{errors.tags.message}</small>
|
<small className="danger-text">{errors.tags.message}</small>
|
||||||
|
|||||||
@ -108,6 +108,7 @@ const ManageJob = ({ Job }) => {
|
|||||||
type="text"
|
type="text"
|
||||||
{...register("title")}
|
{...register("title")}
|
||||||
className="form-control form-control"
|
className="form-control form-control"
|
||||||
|
placeholder="Enter Title"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -144,6 +145,7 @@ const ManageJob = ({ Job }) => {
|
|||||||
options={JobTags?.data}
|
options={JobTags?.data}
|
||||||
name="tags"
|
name="tags"
|
||||||
label="Tag"
|
label="Tag"
|
||||||
|
placeholder="Enter Tag"
|
||||||
required
|
required
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -105,6 +105,9 @@ const handleChange = (e) => {
|
|||||||
outline: "none",
|
outline: "none",
|
||||||
flex: 1,
|
flex: 1,
|
||||||
minWidth: "120px",
|
minWidth: "120px",
|
||||||
|
backgroundColor: "white",
|
||||||
|
color: "black"
|
||||||
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user