mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 21:21:44 +00:00
Merge pull request #160 from harvester/mergify/bp/release-harvester-v1.5/pr-152
Fix usb and pci devices unable to passthrough (backport #152)
This commit is contained in:
commit
d9337ff188
@ -0,0 +1,11 @@
|
|||||||
|
import SteveModel from '@shell/plugins/steve/steve-class';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class representing PCI Device Claim resource.
|
||||||
|
* @extends SteveModal
|
||||||
|
*/
|
||||||
|
export default class PCIDeviceClaim extends SteveModel {
|
||||||
|
cleanForSave(data, _forNew) {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
import SteveModel from '@shell/plugins/steve/steve-class';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class representing USB Device Claim resource.
|
||||||
|
* @extends SteveModal
|
||||||
|
*/
|
||||||
|
export default class USBDeviceClaim extends SteveModel {
|
||||||
|
cleanForSave(data, _forNew) {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user