diff --git a/scripts/config.js b/scripts/config.js index d836c02..e557a84 100644 --- a/scripts/config.js +++ b/scripts/config.js @@ -761,8 +761,8 @@ function addBootLine (container, data, before = null) { item.data = data; item.innerHTML = `
- - + drag icon + ${bootMetaData[data.prefix].alt}

${data.id}

${data.detail}

diff --git a/scripts/utils.js b/scripts/utils.js index ca4ddab..4f705cb 100644 --- a/scripts/utils.js +++ b/scripts/utils.js @@ -132,13 +132,16 @@ export const nodesConfig = { export const bootConfig = { eligiblePrefixes: ["ide", "sata", "net"], ide: { - icon: "images/resources/disk.svg" + icon: "images/resources/disk.svg", + alt: "IDE Bootable Icon" }, sata: { - icon: "images/resources/drive.svg" + icon: "images/resources/drive.svg", + alt: "SATA Bootable Icon" }, net: { - icon: "images/resources/network.svg" + icon: "images/resources/network.svg", + alt: "NET Bootable Icon" } };