This commit is contained in:
Dapoolp 2025-07-24 23:48:05 +02:00
parent 9da6a13009
commit 192c739a58
13 changed files with 35 additions and 29 deletions

View file

@ -10,5 +10,7 @@ export default class RangeField extends fields.StringField {
super(options, context);
}
static prepareConfig(config) {}
static prepareConfig(config) {
return true;
}
}

View file

@ -32,7 +32,8 @@ export default class TargetField extends fields.SchemaField {
}
static checkTargets(amount, targets) {
return !amount || (targets.length > amount);
return true
// return !amount || (targets.length > amount);
}
static isTargetFriendly(target) {