Creature properties now duplicate with up to 50 children

This commit is contained in:
Stefan Zermatten
2021-04-11 14:47:41 +02:00
parent d87524418a
commit bfb860605f
8 changed files with 93 additions and 15 deletions

View File

@@ -10,7 +10,11 @@ const InlineComputationSchema = new SimpleSchema({
type: String,
optional: true,
},
errors: ErrorSchema,
errors: {
type: Array,
optional: true,
},
'errors.$': ErrorSchema,
});
export default InlineComputationSchema;