Merge pull request #167 from Arnatious/fix-faction-sheet

fix faction sheet vanishing on faction delete
This commit is contained in:
megastruktur 2022-01-24 09:48:11 +03:00 committed by GitHub
commit 71a6510ea5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ export class BladesFactionSheet extends BladesSheet {
/** @override */ /** @override */
static get defaultOptions() { static get defaultOptions() {
return foundry.utils.mergeObject(super.defaultOptions, { return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["blades-in-the-dark", "sheet", "item", "faction"], classes: ["blades-in-the-dark", "sheet", "actor", "faction"],
template: "systems/blades-in-the-dark/templates/faction-sheet.html", template: "systems/blades-in-the-dark/templates/faction-sheet.html",
width: 900, width: 900,
height: 'auto', height: 'auto',
@ -53,4 +53,4 @@ export class BladesFactionSheet extends BladesSheet {
}); });
} }
} }