Improve email code

This commit is contained in:
Gucheng Wang
2022-09-04 12:15:07 +08:00
parent ee54dec3b3
commit 8128671c8c
2 changed files with 3 additions and 3 deletions

View File

@ -541,7 +541,7 @@ class ProviderEditPage extends React.Component {
{Setting.getLabel(i18next.t("provider:Email Content"), i18next.t("provider:Email Content - Tooltip"))} :
</Col>
<Col span={22} >
<TextArea autoSize={{minRows: 1, maxRows: 100}} value={this.state.provider.content} onChange={e => {
<TextArea autoSize={{minRows: 3, maxRows: 100}} value={this.state.provider.content} onChange={e => {
this.updateProviderField("content", e.target.value);
}} />
</Col>