fix[group]handle_request reason empty

This commit is contained in:
汉广
2024-07-20 14:16:07 +08:00
parent 7c93606e34
commit cc931bb808
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ const SchemaData = {
properties: {
flag: { type: 'string' },
approve: { type: ['string', 'boolean'] },
reason: { type: 'string' }
reason: { type: 'string', nullable: true, }
},
required: ['flag'],
} as const satisfies JSONSchema;