[MM-64255] Fix height of automatic replies textarea (#31148)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
f710512e3e
Коммит
8f13cda09c
@@ -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}
|
||||
|
||||
Ссылка в новой задаче
Block a user