Lil bit of cleanup

This commit is contained in:
Oliver-Akins 2025-01-26 15:16:51 -07:00
parent dd8ba4df83
commit de0457a111
3 changed files with 7 additions and 4 deletions

View file

@ -107,7 +107,10 @@ export class HeroSkillsCardV1 extends GenericAppMixin(HandlebarsApplicationMixin
for (let i = ctx.gear.length - 1; i <= limit; i++) { for (let i = ctx.gear.length - 1; i <= limit; i++) {
ctx.gear.push({ ctx.gear.push({
index: ctx.gear.length, index: ctx.gear.length,
uuid: ``, name: ``, empty: true }); uuid: ``,
name: ``,
empty: true,
});
}; };
}; };

View file

@ -96,7 +96,7 @@ export class RipCryptIcon extends StyledShadowElement(HTMLElement) {
async #getIcon(path) { async #getIcon(path) {
// Cache hit! // Cache hit!
if (this.constructor._cache.has(path)) { if (this.constructor._cache.has(path)) {
Logger.debug(`Icon ${path} cache hit`); Logger.debug(`Image ${path} cache hit`);
return this.constructor._cache.get(path); return this.constructor._cache.get(path);
}; };
@ -110,7 +110,7 @@ export class RipCryptIcon extends StyledShadowElement(HTMLElement) {
return; return;
}; };
Logger.debug(`Adding icon ${path} to the cache`); Logger.debug(`Adding image ${path} to the cache`);
const svg = this.#parseSVG(await r.text()); const svg = this.#parseSVG(await r.text());
this.constructor._cache.set(path, svg); this.constructor._cache.set(path, svg);
return svg; return svg;

View file

@ -53,7 +53,7 @@ export class ProtectorData extends CommonItemData {
{ {
id: `quantity`, id: `quantity`,
type: `integer`, type: `integer`,
label: `RipCrypt.Apps.quantity`, label: `RipCrypt.common.quantity`,
path: `system.quantity`, path: `system.quantity`,
value: this.quantity, value: this.quantity,
min: 0, min: 0,