Showing
2 changed files
with
4 additions
and
4 deletions
| ... | ... | @@ -527,7 +527,7 @@ const ParameterModal: React.FC<ParameterSettingProps> = (props) => { |
| 527 | 527 | onChange={(val: any) => { |
| 528 | 528 | handleChange(val, record, 'qxProps'); |
| 529 | 529 | }} |
| 530 | - disabled={['USER', 'ORG'].includes(record.type)} | |
| 530 | + disabled={['USER', 'ORG'].includes(record.type) || record.disabled} | |
| 531 | 531 | request={props?.request} |
| 532 | 532 | /> |
| 533 | 533 | </div> | ... | ... |
| ... | ... | @@ -161,12 +161,12 @@ |
| 161 | 161 | align-items: center; |
| 162 | 162 | } |
| 163 | 163 | |
| 164 | - .ant-input-affix-wrapper, | |
| 164 | + .ant-input-affix-wrapper, | |
| 165 | 165 | .qx-field-setter { |
| 166 | 166 | border-width: 0; |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - | |
| 169 | + | |
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | .search-selected{ |
| ... | ... | @@ -250,7 +250,7 @@ |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | .qx-parameter-tree-list .ant-tree-list { |
| 253 | - .ant-tree-treenode { | |
| 253 | + .ant-tree-treenode:not(.ant-tree-treenode-disabled) { | |
| 254 | 254 | background-color: transparent !important; |
| 255 | 255 | padding-top: 4px !important; |
| 256 | 256 | border-radius: 4px; | ... | ... |