Commit d05486a339d1e2c506f135b85457a6c215b84444

Authored by 邱嘉伟
1 parent f60f0038

fix: 弹窗宽度突然变大问题

... ... @@ -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 => {
... ...