From 6572ad571b289c00ff56eef9b37bfcec6895642f Mon Sep 17 00:00:00 2001 From: Emilio Jimenez <19908114+emiliojc@users.noreply.github.com> Date: Sat, 24 May 2025 22:31:45 +0200 Subject: [PATCH] chore: add author + missing TextEditor (#41) Co-authored-by: JimCanE <6275508-jimcane@users.noreply.gitlab.com> --- module/applications/sheets/class.mjs | 1 + module/applications/sheets/pc.mjs | 1 + system.json | 3 +++ 3 files changed, 5 insertions(+) diff --git a/module/applications/sheets/class.mjs b/module/applications/sheets/class.mjs index 94788db2..ea0806d5 100644 --- a/module/applications/sheets/class.mjs +++ b/module/applications/sheets/class.mjs @@ -213,6 +213,7 @@ import DaggerheartSheet from './daggerheart-sheet.mjs'; import Tagify from '@yaireo/tagify'; const { ItemSheetV2 } = foundry.applications.sheets; +const { TextEditor } = foundry.applications.ux; export default class ClassSheet extends DaggerheartSheet(ItemSheetV2) { static DEFAULT_OPTIONS = { tag: 'form', diff --git a/module/applications/sheets/pc.mjs b/module/applications/sheets/pc.mjs index 8112a697..febfdfa8 100644 --- a/module/applications/sheets/pc.mjs +++ b/module/applications/sheets/pc.mjs @@ -6,6 +6,7 @@ import AncestrySelectionDialog from '../ancestrySelectionDialog.mjs'; import DaggerheartSheet from './daggerheart-sheet.mjs'; const { ActorSheetV2 } = foundry.applications.sheets; +const { TextEditor } = foundry.applications.ux; export default class PCSheet extends DaggerheartSheet(ActorSheetV2) { constructor(options = {}) { super(options); diff --git a/system.json b/system.json index d868d435..2450788a 100644 --- a/system.json +++ b/system.json @@ -32,6 +32,9 @@ }, { "name": "Mysteryusy" + }, + { + "name": "JimCanE" } ], "scripts": ["build/daggerheart.js"],