icon
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
maltegrosse 2023-01-24 09:27:24 +01:00
parent 38bac7ccf0
commit 3a671e3ff9
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "jupyterlab-data-pool",
"version": "0.1.1",
"version": "0.1.2",
"description": "Data Sharing",
"keywords": [
"jupyter",

File diff suppressed because one or more lines are too long

View File

@ -6,7 +6,7 @@ import {
ICommandPalette,
MainAreaWidget
} from '@jupyterlab/apputils';
import { Icon } from './images';
import { dataIcon } from './images';
import { ISettingRegistry } from '@jupyterlab/settingregistry';
import { LabIcon } from '@jupyterlab/ui-components';
//import { requestAPI } from './handler';
@ -42,7 +42,7 @@ const plugin: JupyterFrontEndPlugin<void> = {
// `The jupyterlab-data-pool server extension appears to be missing.\n${reason}`
// );
// });
const webDavIcon = new LabIcon({ name: 'ui-components:data-pool-icon', svgstr: Icon});
const webDavIcon = new LabIcon({ name: 'ui-components:data-pool-icon', svgstr: dataIcon});
const label = "Data Pool"
const content = new DataPoolWidget(label);