Minor fixes and tweaks for the party sheet

This commit is contained in:
Carlos Fernandez 2025-11-04 03:39:27 -05:00
parent a3f079d111
commit 0d048fca3f
3 changed files with 3 additions and 2 deletions

View file

@ -675,7 +675,6 @@ export default class DhCharacter extends BaseDataActor {
}
_getTags() {
const tags = [this.class.value.name, this.class.subclass.name, this.community.name, this.ancestry.name];
return tags;
return [this.class.value?.name, this.class.subclass?.name, this.community?.name, this.ancestry?.name].filter((t) => !!t);
}
}