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