Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/workflows/enforce-label.yml

This file was deleted.

9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# jupyterlab_deepnote

[![Github Actions Status](https://github.com/deepnote/jupyterlab-deepnote/workflows/Build/badge.svg)](https://github.com/deepnote/jupyterlab-deepnote/actions/workflows/build.yml)

A Deepnote extension for JupyterLab

This extension is composed of a Python package named `jupyterlab_deepnote`
Expand Down Expand Up @@ -168,13 +166,6 @@ jlpm
jlpm test
```

#### Integration tests

This extension uses [Playwright](https://playwright.dev/docs/intro) for the integration tests (aka user level tests).
More precisely, the JupyterLab helper [Galata](https://github.com/jupyterlab/jupyterlab/tree/master/galata) is used to handle testing the extension in JupyterLab.

More information are provided within the [ui-tests](./ui-tests/README.md) README.

### Packaging the extension

See [RELEASE](RELEASE.md)
7 changes: 7 additions & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,18 @@ class NotebookPicker extends ReactWidget {

return (
<HTMLSelect
id="deepnote-notebook-picker"
value={this.selected ?? '-'}
onChange={this.handleChange}
onKeyDown={() => {}}
aria-label="Select active notebook"
title="Select active notebook"
style={{
maxWidth: '120px',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
overflow: 'hidden'
}}
>
{names.length === 0 ? (
<option value="-">-</option>
Expand Down
Loading