From 774992e480c5afb5344c6685e899d06ff97b5a49 Mon Sep 17 00:00:00 2001 From: Carlos Fernandez Date: Thu, 4 Dec 2025 16:59:45 -0500 Subject: [PATCH] Fix scroll preservation in environment sheet --- 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' } };