UI: Add custom pbas and pbas to the UiSchema

This commit is contained in:
Ilija Lazoroski 2022-07-01 14:38:55 +02:00
parent b0ca99d1f4
commit e28cb30366
1 changed files with 11 additions and 3 deletions

View File

@ -28,15 +28,23 @@ export default function UiSchema(props) {
} }
} }
}, },
custom_pbas : {
classNames: 'config-template-no-header'
},
post_breach_actions: {
classNames: 'config-template-no-header',
'ui:widget': AdvancedMultiSelect,
post_breach_actions: {
classNames: 'config-template-no-header'
}
},
credential_collectors: { credential_collectors: {
collectors: {
classNames: 'config-template-no-header', classNames: 'config-template-no-header',
'ui:widget': AdvancedMultiSelect, 'ui:widget': AdvancedMultiSelect,
credential_collectors_classes :{ credential_collectors_classes :{
classNames: 'config-template-no-header' classNames: 'config-template-no-header'
} }
} }
}
}; };
return UiSchema[props.selectedSection] return UiSchema[props.selectedSection]
} }