-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display local & remote kernels together #8490
Conversation
Codecov Report
@@ Coverage Diff @@
## main #8490 +/- ##
=====================================
Coverage 71% 71%
=====================================
Files 377 377
Lines 23928 23951 +23
Branches 3679 3686 +7
=====================================
+ Hits 17189 17226 +37
+ Misses 5246 5235 -11
+ Partials 1493 1490 -3
|
de8b2c4
to
2fa9f8b
Compare
@@ -106,6 +117,19 @@ export class MultiStepInput<S> implements IMultiStepInput<S> { | |||
input.placeholder = placeholder; | |||
input.ignoreFocusOut = true; | |||
input.items = items; | |||
if (onDidChangeItems) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As per demo, allow one to remove individual items
: DataScience.jupyterSelectURIQuickPickTitleRemoteOnly(), | ||
onDidTriggerItemButton: (e) => { | ||
const url = e.item.url; | ||
if (url && e.button.tooltip === DataScience.removeRemoteJupyterServerEntryInQuickPick()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Abiliy to remove an item instead of clearing everything in the list.
For #8489
Need to add some tests