Skip to content

Commit

Permalink
feat(vm/console): show DVDs in ISO selector
Browse files Browse the repository at this point in the history
Fixes #1880
  • Loading branch information
pdonias committed Jan 16, 2017
1 parent 536e82d commit f0dd625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/iso-device.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import {
export default class IsoDevice extends Component {
_getPredicate = createSelector(
() => this.props.vm.$pool,
poolId => sr => sr.$pool === poolId && sr.SR_type === 'iso'
poolId => sr => sr.$pool === poolId && (sr.SR_type === 'iso' || sr.SR_type === 'udev' && !sr.shared && sr.size)
)

_handleInsert = iso => {
Expand Down

0 comments on commit f0dd625

Please sign in to comment.