diff --git a/package.json b/package.json index 25b38eb..96f1e2b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-synthetic-data", - "version": "0.1.1", + "version": "0.1.2", "description": "Synthetic Data Generator", "keywords": [ "jupyter", diff --git a/src/images.ts b/src/images.ts index a7f0f33..8f6201c 100644 --- a/src/images.ts +++ b/src/images.ts @@ -1,3 +1,3 @@ export default {}; -export const Icon: any = ' ' \ No newline at end of file +export const SyntIcon: any = ' ' \ No newline at end of file diff --git a/src/index.ts b/src/index.ts index 8a3f0b3..9ea3f95 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,7 +6,7 @@ import { ICommandPalette, MainAreaWidget } from '@jupyterlab/apputils'; -import { Icon } from './images'; +import { SyntIcon } from './images'; import { ISettingRegistry } from '@jupyterlab/settingregistry'; import { LabIcon } from '@jupyterlab/ui-components'; //import { requestAPI } from './handler'; @@ -42,7 +42,7 @@ const plugin: JupyterFrontEndPlugin = { // `The jupyterlab-data-pool server extension appears to be missing.\n${reason}` // ); // }); - const webDavIcon = new LabIcon({ name: 'ui-components:synthetic-data-icon', svgstr: Icon}); + const webDavIcon = new LabIcon({ name: 'ui-components:synthetic-data-icon', svgstr: SyntIcon}); const label = "Synthetic Data" const content = new SyntheticWidget(label);