diff --git a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/storage/disk-tab.js b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/storage/disk-tab.js index 37fe4678b2..75081e498d 100644 --- a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/storage/disk-tab.js +++ b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/storage/disk-tab.js @@ -44,7 +44,11 @@ define(function(require) { function DiskTab(diskTabId) { this.diskTabId = 'diskTab' + diskTabId + UniqueId.id(); - this.imageTable = new ImageTable(this.diskTabId + 'Table', {'select': true}); + this.imageTable = new ImageTable(this.diskTabId + 'Table', { + 'select': true, + 'selectOptions': { + "filter_fn": function(image) { return image.STATE != 5; } + }}); } DiskTab.prototype.constructor = DiskTab;