Merge branch 'next' into develop

This commit is contained in:
nocobase[bot] 2025-03-26 10:56:45 +00:00
commit cfca343484
2 changed files with 5 additions and 0 deletions

View File

@ -67,6 +67,8 @@ const Documentation = () => {
direction="vertical"
style={{
width: '100%',
height: '100%',
overflowY: 'auto',
}}
>
<div

View File

@ -15,6 +15,9 @@ export class PluginFieldSequenceClient extends Plugin {
async load() {
this.app.use(SequenceFieldProvider);
this.app.dataSourceManager.addFieldInterfaces([SequenceFieldInterface]);
const calendarPlugin: any = this.app.pm.get('calendar');
// 注册标题字段
calendarPlugin.registerTitleFieldInterface('sequence');
}
}