[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}
|
rows={5}
|
||||||
style={
|
style={
|
||||||
Object {
|
Object {
|
||||||
|
"height": "auto",
|
||||||
"resize": "none",
|
"resize": "none",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -327,6 +328,7 @@ exports[`components/user_settings/notifications/ManageAutoResponder should match
|
|||||||
rows={5}
|
rows={5}
|
||||||
style={
|
style={
|
||||||
Object {
|
Object {
|
||||||
|
"height": "auto",
|
||||||
"resize": "none",
|
"resize": "none",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -341,6 +343,7 @@ exports[`components/user_settings/notifications/ManageAutoResponder should match
|
|||||||
rows={5}
|
rows={5}
|
||||||
style={
|
style={
|
||||||
Object {
|
Object {
|
||||||
|
"height": "auto",
|
||||||
"resize": "none",
|
"resize": "none",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ export default class ManageAutoResponder extends React.PureComponent<Props> {
|
|||||||
>
|
>
|
||||||
<div className='pt-2'>
|
<div className='pt-2'>
|
||||||
<LocalizedPlaceholderTextarea
|
<LocalizedPlaceholderTextarea
|
||||||
style={{resize: 'none'}}
|
style={{resize: 'none', height: 'auto'}}
|
||||||
id='autoResponderMessageInput'
|
id='autoResponderMessageInput'
|
||||||
className='form-control'
|
className='form-control'
|
||||||
rows={5}
|
rows={5}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user