重复问题
- 我搜索了现有的问题
最新版本
- 我测试了最新版本
重现步骤 🕹
链接到实时示例: https://codesandbox.io/s/vigorous-bessie-pcu4j4
基于 https://github.com/mui/material-ui/tree/master/examples/material-next-ts
通过 https://mui.com/material-ui/react-autocomplete/#controlled-states (带初始输入值)扩展示例
当前行为 😯
在 SSR 响应中,当输入不为空时,InputLabel 样式应用于未填充的输入。
预期行为 🤔
在 SSR 响应中,当输入不为空时,InputLabel 应具有正确的样式。
上下文 🔦
- 无响应*
你的环境 🌎
- 无响应*
3条答案
按热度按时间lsmd5eda1#
在https://mui.com/x/react-date-pickers/getting-started/页面上保持相同
bxgwgixi2#
谢谢,我们需要深入研究一下问题所在。作为解决方法,您可以在
InputLabelProps
中使用 shrink: true,请参阅:https://codesandbox.io/s/condescending-lumiere-ryv982?file=/src/ControllableStates.tsx。类似于 #32466bxgwgixi3#
@mnajdova,谢谢!