Skip to content

Commit

Permalink
feat(license): add deprecated column
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Setch <[email protected]>
  • Loading branch information
setchy committed Mar 30, 2024
1 parent d345b2d commit bdfcd03
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/views/portfolio/licenses/LicenseList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,16 @@ export default {
return value === true ? '<i class="fa fa-check-square-o" />' : '';
},
},
{
title: this.$t('message.deprecated'),
field: 'isDeprecatedLicenseId',
sortable: false,
align: 'center',
class: 'tight',
formatter: function (value, row, index) {
return value === true ? '<i class="fa fa-check-square-o" />' : '';
},
},
{
title: this.$t('message.custom_license'),
field: 'isCustomLicense',
Expand Down

0 comments on commit bdfcd03

Please sign in to comment.