mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 21:21:44 +00:00
Fix lint errors
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
This commit is contained in:
parent
7c04b1417a
commit
fd76f84ff0
@ -58,8 +58,8 @@ export default {
|
||||
}]
|
||||
},
|
||||
spec: {
|
||||
pciAddress: actionResource.status.pciAddress,
|
||||
nodeName: actionResource.status.nodeName,
|
||||
pciAddress: actionResource.status.pciAddress,
|
||||
nodeName: actionResource.status.nodeName,
|
||||
userName
|
||||
}
|
||||
} );
|
||||
|
||||
@ -56,7 +56,7 @@ export default {
|
||||
const oldFormatDevices = [];
|
||||
|
||||
const vmDevices = this.value?.domain?.devices?.hostDevices || [];
|
||||
const otherDevices = this.otherDevices(vmDevices).map(({name}) => name);
|
||||
const otherDevices = this.otherDevices(vmDevices).map(({ name }) => name);
|
||||
|
||||
vmDevices.forEach(({ name, deviceName }) => {
|
||||
const checkName = (deviceName || '').split('/')?.[1];
|
||||
@ -196,7 +196,7 @@ export default {
|
||||
|
||||
methods: {
|
||||
otherDevices(vmDevices) {
|
||||
return vmDevices.filter((device) => !this.pciDevices.find((pci) => device.name === pci.name));
|
||||
return vmDevices.filter(device => !this.pciDevices.find(pci => device.name === pci.name));
|
||||
},
|
||||
|
||||
nodeNameFromUid(uid) {
|
||||
|
||||
@ -78,8 +78,8 @@ export default {
|
||||
|
||||
return {
|
||||
headers,
|
||||
rows: [],
|
||||
filterRows: []
|
||||
rows: [],
|
||||
filterRows: []
|
||||
};
|
||||
},
|
||||
|
||||
@ -88,8 +88,6 @@ export default {
|
||||
handler(v) {
|
||||
this.rows = v;
|
||||
this.filterRows = this.rows;
|
||||
|
||||
console.log(this.filterRows)
|
||||
},
|
||||
immediate: true,
|
||||
},
|
||||
|
||||
@ -50,12 +50,12 @@ export default {
|
||||
|
||||
this.selectedDevices = (this.value?.domain?.devices?.hostDevices || [])
|
||||
.map(({ name }) => name)
|
||||
.filter((name) => this.enabledDevices.find(device => device?.metadata?.name === name));
|
||||
.filter(name => this.enabledDevices.find(device => device?.metadata?.name === name));
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
deviceSchema: this.$store.getters['harvester/schemaFor'](HCI.USB_DEVICE),
|
||||
deviceSchema: this.$store.getters['harvester/schemaFor'](HCI.USB_DEVICE),
|
||||
deviceHeaders: [
|
||||
{ ...STATE },
|
||||
SIMPLE_NAME,
|
||||
@ -165,7 +165,7 @@ export default {
|
||||
|
||||
methods: {
|
||||
otherDevices(vmDevices) {
|
||||
return vmDevices.filter((device) => !this.devices.find((usb) => device.name === usb.name));
|
||||
return vmDevices.filter(device => !this.devices.find(usb => device.name === usb.name));
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@ -42,7 +42,7 @@ export default {
|
||||
hasPCIAddon: false,
|
||||
schema: null,
|
||||
toUSBAddon: `${ HCI.ADD_ONS }/harvester-system/${ ADD_ONS.USB_DEVICE_CONTROLLER }?mode=edit`,
|
||||
headers: [
|
||||
headers: [
|
||||
{ ...STATE },
|
||||
SIMPLE_NAME,
|
||||
],
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user