mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Port cell hover fix and new Interactive extension metadata additions to release branch. (#19096)
* Only update hover execution state if cell is not active. (#19073) * Add .NET Interactive extension info to product.json. (#19069)
This commit is contained in:
@@ -61,6 +61,7 @@
|
|||||||
"Microsoft.sql-database-projects",
|
"Microsoft.sql-database-projects",
|
||||||
"Microsoft.sql-migration",
|
"Microsoft.sql-migration",
|
||||||
"Microsoft.machine-learning",
|
"Microsoft.machine-learning",
|
||||||
|
"Microsoft.dotnet-interactive-vscode",
|
||||||
"Redgate.sql-prompt",
|
"Redgate.sql-prompt",
|
||||||
"Redgate.sql-search",
|
"Redgate.sql-search",
|
||||||
"SentryOne.plan-explorer"
|
"SentryOne.plan-explorer"
|
||||||
@@ -76,7 +77,9 @@
|
|||||||
"ms-vscode.remotehub",
|
"ms-vscode.remotehub",
|
||||||
"ms-vscode.remotehub-insiders",
|
"ms-vscode.remotehub-insiders",
|
||||||
"GitHub.remotehub",
|
"GitHub.remotehub",
|
||||||
"GitHub.remotehub-insiders"
|
"GitHub.remotehub-insiders",
|
||||||
|
"ms-dotnettools.dotnet-interactive-vscode",
|
||||||
|
"ms-toolsai.jupyter"
|
||||||
],
|
],
|
||||||
"extensionsGallery": {
|
"extensionsGallery": {
|
||||||
"version": "0.0.76",
|
"version": "0.0.76",
|
||||||
|
|||||||
@@ -287,8 +287,11 @@ export class CellModel extends Disposable implements ICellModel {
|
|||||||
|
|
||||||
public set hover(value: boolean) {
|
public set hover(value: boolean) {
|
||||||
this._hover = value;
|
this._hover = value;
|
||||||
|
// The Run button is always visible while the cell is active, so we only need to emit this event for inactive cells
|
||||||
|
if (!this.active) {
|
||||||
this.fireExecutionStateChanged();
|
this.fireExecutionStateChanged();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public get executionCount(): number | undefined {
|
public get executionCount(): number | undefined {
|
||||||
return this._executionCount;
|
return this._executionCount;
|
||||||
|
|||||||
Reference in New Issue
Block a user