From 587c644bfb2fa0accd41879509397dffa0e87129 Mon Sep 17 00:00:00 2001 From: Dapoolp Date: Sat, 30 Aug 2025 17:35:51 +0200 Subject: [PATCH] Fix Action type to be not nullable --- module/data/action/baseAction.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module/data/action/baseAction.mjs b/module/data/action/baseAction.mjs index 2f5935da..7ea7331a 100644 --- a/module/data/action/baseAction.mjs +++ b/module/data/action/baseAction.mjs @@ -32,7 +32,8 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel actionType: new fields.StringField({ choices: CONFIG.DH.ITEM.actionTypes, initial: 'action', - nullable: true + nullable: false, + required: true }) };