Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
BroKun committed Dec 1, 2023
1 parent c6ae59b commit 38cad51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/libro-jupyter/src/file/file-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export class JupyterFileService extends FileService {

async delete(
resource: URI,
options?: ResolveFileOptions | undefined,
_options?: ResolveFileOptions | undefined,
): Promise<FileStatWithMetadata> {
await this.contentsManager.delete(resource.path.toString());
return this.resolve(resource);
Expand Down
4 changes: 4 additions & 0 deletions packages/libro-lab/src/layout/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const LibroLabLayoutMainComponent = forwardRef(
{layoutService.isAreaVisible(LibroLabLayoutSlots.navigator) && (
<SplitPanel.Pane
id="libro-lab-content-layout-left"
className="libro-lab-content-layout-left"
defaultSize={300}
minResize={160}
>
Expand All @@ -24,6 +25,7 @@ export const LibroLabLayoutMainComponent = forwardRef(
)}
<SplitPanel.Pane
id="libro-lab-content-layout-main-container"
className="libro-lab-content-layout-main-container"
flex={1}
minResize={200}
>
Expand All @@ -34,6 +36,7 @@ export const LibroLabLayoutMainComponent = forwardRef(
{layoutService.isAreaVisible(LibroLabLayoutSlots.content) && (
<SplitPanel.Pane
id="libro-lab-content-layout-main"
className="libro-lab-content-layout-main"
flex={2}
flexGrow={1}
minResize={200}
Expand All @@ -44,6 +47,7 @@ export const LibroLabLayoutMainComponent = forwardRef(
{layoutService.isAreaVisible(LibroLabLayoutSlots.contentBottom) && (
<SplitPanel.Pane
id="libro-lab-content-layout-bottom"
className="libro-lab-content-layout-bottom"
flex={1}
defaultSize={200}
>
Expand Down

0 comments on commit 38cad51

Please sign in to comment.