diff --git a/ui/src/components/view/InfoCard.vue b/ui/src/components/view/InfoCard.vue index d8b37e3c6e4..6ecf4885ce5 100644 --- a/ui/src/components/view/InfoCard.vue +++ b/ui/src/components/view/InfoCard.vue @@ -1211,6 +1211,9 @@ export default { if (item.name === 'template') { query.templatefilter = 'self' query.filter = 'self' + } else if (item.name === 'iso') { + query.isofilter = 'self' + query.filter = 'self' } if (item.param === 'account') { diff --git a/ui/src/config/section/account.js b/ui/src/config/section/account.js index 21996167705..b5e962752f8 100644 --- a/ui/src/config/section/account.js +++ b/ui/src/config/section/account.js @@ -61,6 +61,10 @@ export default { name: 'template', title: 'label.templates', param: 'account' + }, { + name: 'iso', + title: 'label.isos', + param: 'account' }], filters: () => { const filters = ['enabled', 'disabled', 'locked']