add allow_override to source_project
This commit is contained in:
Seth Foster 2023-03-06 23:41:34 -05:00
parent 8e6f4fae80
commit a5f9506f49
2 changed files with 2 additions and 2 deletions

View File

@ -156,7 +156,7 @@ SUMMARIZABLE_FK_FIELDS = {
'default_environment': DEFAULT_SUMMARY_FIELDS + ('image',),
'execution_environment': DEFAULT_SUMMARY_FIELDS + ('image',),
'project': DEFAULT_SUMMARY_FIELDS + ('status', 'scm_type', 'allow_override'),
'source_project': DEFAULT_SUMMARY_FIELDS + ('status', 'scm_type'),
'source_project': DEFAULT_SUMMARY_FIELDS + ('status', 'scm_type', 'allow_override'),
'project_update': DEFAULT_SUMMARY_FIELDS + ('status', 'failed'),
'credential': DEFAULT_SUMMARY_FIELDS + ('kind', 'cloud', 'kubernetes', 'credential_type_id'),
'signature_validation_credential': DEFAULT_SUMMARY_FIELDS + ('kind', 'credential_type_id'),

View File

@ -235,7 +235,7 @@ function InventorySourceDetail({ inventorySource }) {
value={VERBOSITY()[verbosity]}
/>
<Detail
label={t`Scm Branch`}
label={t`Source Control Branch`}
helpText={helpText.sourceControlBranch}
value={scm_branch}
/>