mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
Minor fixes and tweaks for the party sheet (#1239)
* Minor fixes and tweaks for the party sheet * Fix scroll restoration for party sheet tabs
This commit is contained in:
parent
a3f079d111
commit
4f990166f5
4 changed files with 6 additions and 5 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue