From e3f244d8d7eb03fba69735ad0d4759a32e3e331a Mon Sep 17 00:00:00 2001 From: Carlos Fernandez Date: Fri, 5 Dec 2025 17:30:50 -0800 Subject: [PATCH] Fix scroll preservation in environment sheet (#1362) --- module/applications/sheets/actors/environment.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/applications/sheets/actors/environment.mjs b/module/applications/sheets/actors/environment.mjs index afc338e1..98bc873d 100644 --- a/module/applications/sheets/actors/environment.mjs +++ b/module/applications/sheets/actors/environment.mjs @@ -37,11 +37,11 @@ export default class DhpEnvironment extends DHBaseActorSheet { header: { template: 'systems/daggerheart/templates/sheets/actors/environment/header.hbs' }, features: { template: 'systems/daggerheart/templates/sheets/actors/environment/features.hbs', - scrollable: ['feature-section'] + scrollable: ['.feature-section'] }, potentialAdversaries: { template: 'systems/daggerheart/templates/sheets/actors/environment/potentialAdversaries.hbs', - scrollable: ['items-sections'] + scrollable: ['.items-section'] }, notes: { template: 'systems/daggerheart/templates/sheets/actors/environment/notes.hbs' } };