diff --git a/src/i18n/locales/en.json b/src/i18n/locales/en.json index d94ecc85c..31892587f 100644 --- a/src/i18n/locales/en.json +++ b/src/i18n/locales/en.json @@ -437,6 +437,8 @@ "component_device": "Device", "component_firmware": "Firmware", "component_file": "File", + "component_classification": "Classification", + "component_classification_desc": "Classifies whether a component is considered internal or external to an organization", "dates": "Dates", "owasp_rr": "OWASP Risk Rating", "owasp_rr_likelihood_score": "OWASP RR Likelihood score", diff --git a/src/views/portfolio/projects/Component.vue b/src/views/portfolio/projects/Component.vue index 77f9c0633..13dee8516 100644 --- a/src/views/portfolio/projects/Component.vue +++ b/src/views/portfolio/projects/Component.vue @@ -5,7 +5,16 @@ -
{{ componentLabel }}
+
+ {{ componentLabel }}  + {{ component.isInternal ? 'INTERNAL' : 'EXTERNAL' }} + +
+ {{ $t('message.component_classification') }} + {{ component.isInternal ? 'INTERNAL' : 'EXTERNAL' }} +