From 98913dc00a0e62a7e95d80dba2b261781689f270 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Collonval?= Date: Mon, 15 Jul 2024 15:53:27 +0200 Subject: [PATCH] Add activator plugin --- datalayer/application.py | 4 ++-- src/jupyterlab/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/datalayer/application.py b/datalayer/application.py index 73d51b8..43c3aec 100644 --- a/datalayer/application.py +++ b/datalayer/application.py @@ -67,7 +67,7 @@ class DatalayerApp(Application): """Base class for Datalayer applications""" name = "datalayer" # override in subclasses - description = "A Datalayer IOlication" + description = "A Datalayer Application" aliases = base_aliases flags = base_flags @@ -280,7 +280,7 @@ def start(self): @classmethod def launch_instance(cls, argv=None, **kwargs): - """Launch an instance of a Datalayer IOlication""" + """Launch an instance of a Datalayer Application""" try: return super().launch_instance(argv=argv, **kwargs) except NoStart: diff --git a/src/jupyterlab/index.ts b/src/jupyterlab/index.ts index 1d80a8e..fdd537d 100644 --- a/src/jupyterlab/index.ts +++ b/src/jupyterlab/index.ts @@ -1,3 +1,3 @@ -import { datalayerCorePlugin } from '@datalayer/run'; +import { activatorPlugin, datalayerCorePlugin } from '@datalayer/run'; -export default datalayerCorePlugin; +export default [activatorPlugin, datalayerCorePlugin];