Skip to content

Commit 507b2b7

Browse files
committed
fix: notebook cron model error
1 parent c95ef6b commit 507b2b7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

zeppelin-web-angular/src/app/pages/workspace/notebook/action-bar/action-bar.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ export class NotebookActionBarComponent extends MessageListenersManager implemen
6969
{ name: '12h', value: '0 0 0/12 * * ?' },
7070
{ name: '1d', value: '0 0 0 * * ?' }
7171
];
72-
7372
updateNoteName(name: string) {
7473
const trimmedNewName = name.trim();
7574
if (trimmedNewName.length > 0 && this.note.name !== trimmedNewName) {

zeppelin-web-angular/src/app/pages/workspace/notebook/notebook.module.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ import { NotebookParagraphProgressComponent } from './paragraph/progress/progres
4545
import { NotebookPermissionsComponent } from './permissions/permissions.component';
4646
import { NotebookRevisionsComparatorComponent } from './revisions-comparator/revisions-comparator.component';
4747

48+
import { NzCheckboxModule } from 'ng-zorro-antd/checkbox';
4849
import { WorkspaceShareModule } from '../../workspace/share/share.module';
4950
import { NotebookActionBarComponent } from './action-bar/action-bar.component';
5051
import { NotebookRoutingModule } from './notebook-routing.module';
@@ -90,7 +91,8 @@ import { NotebookShareModule } from './share/share.module';
9091
NzGridModule,
9192
NzRadioModule,
9293
DragDropModule,
93-
NzCodeEditorModule
94+
NzCodeEditorModule,
95+
NzCheckboxModule
9496
]
9597
})
9698
export class NotebookModule {}

0 commit comments

Comments
 (0)