Material-UI Dialog(/Modal) by clicking TextField loses focus on every onChange

Viewed 26

<List key={"test1"} style={{ marginBottom: '10px' }}>
                  <TextField
                    required
                    id="filled-basic"
                    key={categoryData.title}
                    label="Title"
                    name="title"
                    value={categoryData.title}
                    type="name"
                    variant="filled"
                    style={{ width: "130ch" }}
                    onChange={(e)=>{
                      setCategoryData({...categoryData,
                        title:e.target.value})
                        console.log(e.target.value);
                    }}
                  />
                </List>

Material-UI Dialog(/Modal) by clicking TextField loses focus on every onChange

https://drive.google.com/file/d/17vYYnOQQNFpaki0zi-emvghAbOImykZt/view?usp=sharing

0 Answers
Related