Skip to content
Merged
Changes from 1 commit
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
6 changes: 6 additions & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,17 @@ 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'
}}
>
{names.length === 0 ? (
<option value="-">-</option>
Expand Down
Loading