[MM-64255] Fix height of automatic replies textarea (#31148)

Этот коммит содержится в:
Devin Binnie
2025-05-22 16:19:58 -04:00
коммит произвёл GitHub
родитель f710512e3e
Коммит 8f13cda09c
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@@ -229,6 +229,7 @@ exports[`components/user_settings/notifications/ManageAutoResponder should match
rows={5}
style={
Object {
"height": "auto",
"resize": "none",
}
}
@@ -327,6 +328,7 @@ exports[`components/user_settings/notifications/ManageAutoResponder should match
rows={5}
style={
Object {
"height": "auto",
"resize": "none",
}
}
@@ -341,6 +343,7 @@ exports[`components/user_settings/notifications/ManageAutoResponder should match
rows={5}
style={
Object {
"height": "auto",
"resize": "none",
}
}

Просмотреть файл

@@ -70,7 +70,7 @@ export default class ManageAutoResponder extends React.PureComponent<Props> {
>
<div className='pt-2'>
<LocalizedPlaceholderTextarea
style={{resize: 'none'}}
style={{resize: 'none', height: 'auto'}}
id='autoResponderMessageInput'
className='form-control'
rows={5}