Skip to content

Commit

Permalink
add new optional column Classifier in project component view
Browse files Browse the repository at this point in the history
Signed-off-by: Ross Murphy <[email protected]>
  • Loading branch information
2000rosser committed Oct 10, 2024
1 parent 4fdb56e commit 2a34119
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/views/portfolio/projects/ProjectComponents.vue
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,15 @@ export default {
return xssFilters.inHTMLData(common.valueWithDefault(value, ''));
},
},
{
title: this.$t('message.classifier'),
field: 'classifier',
sortable: true,
visible: false,
formatter(value, row, index) {
return xssFilters.inHTMLData(common.valueWithDefault(value, ''));
},
},
{
title: this.$t('message.internal'),
field: 'isInternal',
Expand Down

0 comments on commit 2a34119

Please sign in to comment.