mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 00:59:03 +01:00
add NotebookController#detail
This commit is contained in:
@@ -106,6 +106,13 @@ export class ExtHostNotebookKernels implements ExtHostNotebookKernelsShape {
|
||||
data.label = value ?? extension.displayName ?? extension.name;
|
||||
_update();
|
||||
},
|
||||
get detail() {
|
||||
return data.detail ?? '';
|
||||
},
|
||||
set detail(value) {
|
||||
data.detail = value;
|
||||
_update();
|
||||
},
|
||||
get description() {
|
||||
return data.description ?? '';
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user