remove console.log s

This commit is contained in:
Arthur Lu 2023-01-12 15:08:45 -08:00
parent 5b111b1114
commit cb9c3a051f

View File

@ -46,7 +46,6 @@ async function init () {
async function populateResources () {
let config = await request(`/nodes/${node}/${type}/${vmid}/config`);
console.log(config);
let name = type === "qemu" ? "name" : "hostname";
addMetaLine("name", "Name", {type: "text", value: config.data[name]});