Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #263 from jtpio/fix-download
Browse files Browse the repository at this point in the history
Fix missing download command
  • Loading branch information
jtpio authored Oct 30, 2021
2 parents 2990526 + bed41c3 commit 8d92d7f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,17 @@ async function main() {
),
require('@jupyterlab/console-extension'),
require('@jupyterlab/docmanager-extension').default.filter(({ id }) =>
['@jupyterlab/docmanager-extension:plugin'].includes(id)
[
'@jupyterlab/docmanager-extension:plugin',
'@jupyterlab/docmanager-extension:download'
].includes(id)
),
require('@jupyterlab/docprovider-extension'),
require('@jupyterlab/filebrowser-extension').default.filter(({ id }) =>
['@jupyterlab/filebrowser-extension:factory'].includes(id)
[
'@jupyterlab/filebrowser-extension:factory',
'@jupyterlab/filebrowser-extension:download'
].includes(id)
),
require('@jupyterlab/fileeditor-extension').default.filter(({ id }) =>
['@jupyterlab/fileeditor-extension:plugin'].includes(id)
Expand Down

0 comments on commit 8d92d7f

Please sign in to comment.