Actions
Bug #23735
closedTabs not hidden on CV page when a repository type is Disabled
Description
With 'deb' repo types disabled, the tab still shows up on CV page. Source of the problem seems to be having ng-hide and show on same element:
ng-hide="contentView.composite"
ng-show="repositoryTypeEnabled('deb')"
changing to just ng-hide makes it work:
ng-hide="contentView.composite || !repositoryTypeEnabled('file')"
Actions