mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-22 18:39:55 +02:00
Fixed so that the Appearance setting for auto expanding message sections works (#2104)
Some checks are pending
Project CI / build (24.x) (push) Waiting to run
Some checks are pending
Project CI / build (24.x) (push) Waiting to run
This commit is contained in:
parent
abe54cfc43
commit
ffa7912d01
1 changed files with 4 additions and 4 deletions
|
|
@ -4,10 +4,10 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage {
|
|||
targetHook = null;
|
||||
|
||||
static #EXPAND_SECTIONS = [
|
||||
{ selector: 'roll-section [data-action="expandRoll"]', key: 'roll' },
|
||||
{ selector: 'damage-section', key: 'damage' },
|
||||
{ selector: 'target-section', key: 'target' },
|
||||
{ selector: 'description-section', key: 'desc' }
|
||||
{ selector: '.roll-section [data-action="expandRoll"]', key: 'roll' },
|
||||
{ selector: '.damage-section', key: 'damage' },
|
||||
{ selector: '.target-section', key: 'target' },
|
||||
{ selector: '.description-section', key: 'desc' }
|
||||
];
|
||||
|
||||
async renderHTML() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue