From 55454cd0895fc8ab7378696a66ed42a1a8832c1f Mon Sep 17 00:00:00 2001 From: WBHarry Date: Wed, 28 Jan 2026 11:14:13 +0100 Subject: [PATCH] Fixed an error where extra labels were shown --- templates/sheets/items/domainCard/settings.hbs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/templates/sheets/items/domainCard/settings.hbs b/templates/sheets/items/domainCard/settings.hbs index f5781606..fc88b7de 100644 --- a/templates/sheets/items/domainCard/settings.hbs +++ b/templates/sheets/items/domainCard/settings.hbs @@ -7,19 +7,19 @@ {{localize tabs.settings.label}} {{localize "DAGGERHEART.GENERAL.type"}} - {{formField systemFields.type value=source.system.type localize=true}} + {{formInput systemFields.type value=source.system.type localize=true}} {{localize "DAGGERHEART.GENERAL.Domain.single"}} - {{formField systemFields.domain value=source.system.domain choices=domainChoices valueAttr="id" labelAttr="label" localize=true}} + {{formInput systemFields.domain value=source.system.domain choices=domainChoices valueAttr="id" labelAttr="label" localize=true}} {{localize "DAGGERHEART.GENERAL.level"}} - {{formField systemFields.level value=source.system.level data-dtype="Number"}} + {{formInput systemFields.level value=source.system.level data-dtype="Number"}} {{localize "DAGGERHEART.ITEMS.DomainCard.recallCost"}} - {{formField systemFields.recallCost value=source.system.recallCost data-dtype="Number"}} + {{formInput systemFields.recallCost value=source.system.recallCost data-dtype="Number"}} {{localize "DAGGERHEART.ITEMS.DomainCard.vaultActive"}} - {{formField systemFields.vaultActive value=source.system.vaultActive}} + {{formInput systemFields.vaultActive value=source.system.vaultActive}} {{localize "DAGGERHEART.ITEMS.DomainCard.loadoutIgnore"}} - {{formField systemFields.loadoutIgnore value=source.system.loadoutIgnore}} + {{formInput systemFields.loadoutIgnore value=source.system.loadoutIgnore}} {{localize "DAGGERHEART.ITEMS.DomainCard.domainTouched"}} - {{formField systemFields.domainTouched value=source.system.domainTouched placeholder=0 }} + {{formInput systemFields.domainTouched value=source.system.domainTouched placeholder=0 }} {{> "systems/daggerheart/templates/sheets/global/partials/resource-section/resource-section.hbs" }}