Merge pull request #134 from serfend/main

fix[group]handle_request reason empty
This commit is contained in:
手瓜一十雪
2024-07-20 15:24:39 +08:00
committed by GitHub
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;