Fix attribute schema allowing key to be nullable

This commit is contained in:
Oliver 2026-04-25 19:07:54 -06:00
parent 7b127069b7
commit 599789ec13

View file

@ -16,8 +16,7 @@ export class AttributeItemData extends foundry.abstract.TypeDataModel {
key: new fields.StringField({
blank: false,
trim: true,
nullable: true,
initial: null,
nullable: false,
}),
aboveTheFold: new fields.BooleanField({
initial: false,