We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca53a42 commit 7cbb8a9Copy full SHA for 7cbb8a9
src/index.tsx
@@ -115,11 +115,17 @@ class NotebookPicker extends ReactWidget {
115
116
return (
117
<HTMLSelect
118
+ id="deepnote-notebook-picker"
119
value={this.selected ?? '-'}
120
onChange={this.handleChange}
121
onKeyDown={() => {}}
122
aria-label="Select active notebook"
123
title="Select active notebook"
124
+ style={{
125
+ maxWidth: '120px',
126
+ textOverflow: 'ellipsis',
127
+ whiteSpace: 'nowrap'
128
+ }}
129
>
130
{names.length === 0 ? (
131
<option value="-">-</option>
0 commit comments