Showing
1 changed file
with
4 additions
and
4 deletions
| ... | ... | @@ -500,13 +500,13 @@ export const QxParameterSetting: React.FC<ParameterSettingProps> = (props) => { |
| 500 | 500 | const onBlur = (e) => { |
| 501 | 501 | e.persist(); |
| 502 | 502 | const parentNode = e.currentTarget.parentNode.parentNode.parentNode; |
| 503 | - const currentNode = e.target.parentNode; | |
| 503 | + // const currentNode = e.target.parentNode; | |
| 504 | 504 | if (!!parentNode) { |
| 505 | 505 | parentNode.style.backgroundColor = ''; |
| 506 | 506 | } |
| 507 | - if (!!currentNode) { | |
| 508 | - currentNode.style.width = ''; | |
| 509 | - } | |
| 507 | + // if (!!currentNode) { | |
| 508 | + // currentNode.style.width = ''; | |
| 509 | + // } | |
| 510 | 510 | }; |
| 511 | 511 | |
| 512 | 512 | const getValueOptions = (item: any): ValueOptionProps[] | undefined => { | ... | ... |