Skip to content

Commit

Permalink
fix(lab): unregister KernelManagerView temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshinesmilelk authored and BroKun committed Dec 25, 2023
1 parent 95bfaec commit 22b3f86
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions packages/libro-lab/src/module.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import {
ManaModule,
createSlotPreference,
RootSlotId,
SideTabView,
createViewPreference,
HeaderArea,
} from '@difizen/mana-app';
Expand All @@ -14,7 +13,7 @@ import { LabConfigAppContribution } from './config/config-contribution.js';
import { CodeEditorViewerModule } from './editor-viewer/index.js';
import { GithubLinkView } from './github-link/index.js';
import { ImageViewerModule } from './image-viewer/index.js';
import { KernelManagerView } from './kernel-manager/index.js';
// import { KernelManagerView } from './kernel-manager/index.js';
import { LibroLabApp } from './lab-app.js';
import { ContentBottomTabView } from './layout/content-bottom-tab-view.js';
import {
Expand Down Expand Up @@ -45,16 +44,16 @@ export const LibroLabModule = ManaModule.create()
},
autoCreate: true,
}),
KernelManagerView,
createViewPreference({
view: KernelManagerView,
slot: LibroLabLayoutSlots.navigator,
openOptions: {
reveal: false,
order: 'kernel-manager',
},
autoCreate: true,
}),
// KernelManagerView,
// createViewPreference({
// view: KernelManagerView,
// slot: LibroLabLayoutSlots.navigator,
// openOptions: {
// reveal: false,
// order: 'kernel-manager',
// },
// autoCreate: true,
// }),
createSlotPreference({
view: LibroLabLayoutView,
slot: RootSlotId,
Expand Down

0 comments on commit 22b3f86

Please sign in to comment.