gpt4 book ai didi

MUI Autocomplete component showing two clear buttons in Chromium. How to hide both?(在Chromium中显示两个清晰按钮的MUI自动完成组件。如何隐藏两者?)

转载 作者:bug小助手 更新时间:2023-10-25 17:56:47 24 4
gpt4 key购买 nike



The second clear button shows only on Chromium; it doesn't show on Firefox.

第二个Clear按钮只在Chromium上显示,在Firefox上不显示。


Example of a MUI React Autocomplete component showing two clear buttons.

显示两个明确按钮的MUI Reaction AutoComplete组件的示例。


All the solutions mentioned here hide only the right most button, not the one on the left.

这里提到的所有解决方案只隐藏了最右边的按钮,而不是左边的按钮。


How do I hide the one on the left?

我怎么把左边的那个藏起来?


This seems to happen only when type: 'search' is added to InputProps

似乎只有在InputProps中添加了type:‘Search’时才会出现这种情况


Minimal, reproducible example on Chromium Version 110.0.5481.100:

Chromium版本110.0.5481.100上的最小、可重现的示例:


<Autocomplete
disablePortal
disableClearable
id="combo-box-demo"
options={supported_games}
sx={{ width: 300 }}
renderInput={(params) => <TextField {...params} label="Movie" InputProps={{ ...params.InputProps, type: 'search'}} />}
/>

Reproducible outcome:


更多回答

Is this a bug from MUI? Can you provide a minimal and reproducible example?

这是来自MUI的错误吗?你能提供一个最小且可重现的例子吗?

@konekoya Added. I don't know if it's a bug, which is why I haven't started a Github issue, but I noticed the second clear button shows up when I involve InputProps If InputProps is taken out of the example code, it works as intended. Edit: It seems to be type: 'search' making it happen.

@konekoya已添加。我不知道这是不是一个bug,这就是为什么我没有开始一个Github问题,但我注意到第二个清除按钮出现时,我涉及InputProps如果InputProps是从示例代码中取出,它的工作原理是预期的。编辑:这似乎是类型:'搜索'使它发生。

优秀答案推荐

Should be the default style from input type="search", add this to your TextField sx props:

应该是来自INPUT TYPE=“Search”的默认样式,将此添加到您的Textfield SX道具中:


sx={{ "input[type='search']::-webkit-search-cancel-button": {
display: "none",
}
}}

更多回答

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com