Fix Action type to be not nullable

This commit is contained in:
Dapoolp 2025-08-30 17:35:51 +02:00
parent 5586e74a46
commit 587c644bfb

View file

@ -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
})
};