Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
dawnxchoo committed Oct 18, 2024
1 parent 086b95f commit 19a1a2e
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions packages/notebook-extension/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -589,22 +589,6 @@ const editNotebookMetadata: JupyterFrontEndPlugin<void> = {
},
};

/**
* Export the plugins as default.
*/
const plugins: JupyterFrontEndPlugin<any>[] = [
checkpoints,
closeTab,
openTreeTab,
editNotebookMetadata,
kernelLogo,
kernelStatus,
notebookToolsWidget,
scrollOutput,
tabIcon,
trusted,
];

/**
* A plugin to add a "test" title at the top of the notebook.
*/
Expand All @@ -622,7 +606,23 @@ const addTestTitle: JupyterFrontEndPlugin<void> = {
}

Check failure on line 606 in packages/notebook-extension/src/index.ts

View workflow job for this annotation

GitHub Actions / Test Lint

Insert `,`
};

Check failure on line 607 in packages/notebook-extension/src/index.ts

View workflow job for this annotation

GitHub Actions / Test Lint

Delete `⏎`

// Add this to the plugins array
plugins.push(addTestTitle);

/**
* Export the plugins as default.
*/
const plugins: JupyterFrontEndPlugin<any>[] = [
checkpoints,
closeTab,
openTreeTab,
editNotebookMetadata,
kernelLogo,
kernelStatus,
notebookToolsWidget,
scrollOutput,
tabIcon,
trusted,
addTestTitle

Check failure on line 624 in packages/notebook-extension/src/index.ts

View workflow job for this annotation

GitHub Actions / Test Lint

Insert `,`
];

Check failure on line 625 in packages/notebook-extension/src/index.ts

View workflow job for this annotation

GitHub Actions / Test Lint

Delete `⏎`


export default plugins;

0 comments on commit 19a1a2e

Please sign in to comment.