hotfix/2.15.1.2407.01

This commit is contained in:
黎永顺 2024-08-15 11:04:14 +08:00
parent f984cd3f59
commit 5c9f954adb
2 changed files with 3 additions and 3 deletions

View File

@ -176,9 +176,9 @@ class PersonalScopeModal extends Component {
break;
case "SQL":
return <div style={{ display: "flex", alignItems: "center" }}>
<WeaTextarea minRows={2} viewAttr={3} style={{ width: 270, marginRight: 10 }} value={targetTypeIds}
<WeaTextarea minRows={2} viewAttr={3} style={{ width: 270 }} value={targetTypeIds}
onChange={val => this.setState({ targetTypeIds: val, targetTypeIdsNames: val })}/>
<WeaHelpfulTip width={200} placement="topLeft" title={<SQLHelpTip/>}/>
<WeaHelpfulTip style={{ marginLeft: 10 }} width={200} placement="topLeft" title={<SQLHelpTip/>}/>
</div>;
default:
break;

View File

@ -201,7 +201,7 @@ export default class AddTaxAgentModal extends React.Component {
<div style={{ display: "flex", alignItems: "center" }}>
<WeaTextarea minRows={2} viewAttr={3} style={{ width: 270 }} value={this.state.ids}
onChange={ids => this.setState({ ids })}/>
<WeaHelpfulTip width={280} placement="topLeft" title={<SQLHelpTip/>}/>
<WeaHelpfulTip style={{ marginLeft: 10 }} width={280} placement="topLeft" title={<SQLHelpTip/>}/>
</div>
</WeaError>
)}