add button titles to instance
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
parent
7f9130b33f
commit
1ae3ffe886
@ -66,11 +66,13 @@ export class Instance extends HTMLElement {
|
||||
let powerButton = this.shadowElement.querySelector("#power-btn");
|
||||
powerButton.src = instances[this.status].powerButtonSrc;
|
||||
powerButton.alt = instances[this.status].powerButtonAlt;
|
||||
powerButton.title = instances[this.status].powerButtonAlt;
|
||||
powerButton.addEventListener("click", this.handlePowerButton.bind(this));
|
||||
|
||||
let configButton = this.shadowElement.querySelector("#configure-btn");
|
||||
configButton.src = instances[this.status].configButtonSrc;
|
||||
configButton.alt = instances[this.status].configButtonAlt;
|
||||
configButton.title = instances[this.status].configButtonAlt;
|
||||
configButton.addEventListener("click", this.handleConfigButton.bind(this));
|
||||
|
||||
if (this.node.status !== "online") {
|
||||
|
@ -36,21 +36,21 @@ export const resources = {
|
||||
export const instances = {
|
||||
running: {
|
||||
powerButtonSrc: "images/actions/stop.svg",
|
||||
powerButtonAlt: "shutdown instance",
|
||||
powerButtonAlt: "Shutdown Instance",
|
||||
configButtonSrc: "images/actions/config-inactive.svg",
|
||||
configButtonAlt: "configuration disabled"
|
||||
configButtonAlt: "Configuration Disabled"
|
||||
},
|
||||
stopped: {
|
||||
powerButtonSrc: "images/actions/start.svg",
|
||||
powerButtonAlt: "start instance",
|
||||
powerButtonAlt: "Start Instance",
|
||||
configButtonSrc: "images/actions/config-active.svg",
|
||||
configButtonAlt: "configure instance"
|
||||
configButtonAlt: "Configure Instance"
|
||||
},
|
||||
loading: {
|
||||
powerButtonSrc: "images/actions/loading.svg",
|
||||
powerButtonAlt: "loading instance",
|
||||
powerButtonAlt: "Loading Instance",
|
||||
configButtonSrc: "images/actions/config-inactive.svg",
|
||||
configButtonAlt: "configuration disabled"
|
||||
configButtonAlt: "Configuration Disabled"
|
||||
}
|
||||
}
|
||||
|
||||
@ -71,7 +71,7 @@ function getCookie(cname) {
|
||||
}
|
||||
|
||||
export async function requestTicket (username, password) {
|
||||
let response = await requestPVE("/access/ticket", "POST", {username: `${username}@pve`, password: password}, false);
|
||||
let response = await requestPVE("/access/ticket", "POST", {username: `${username}@ldap`, password: password}, false);
|
||||
|
||||
return response;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user