mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 01:25:36 -05:00
the fix open in designer menu item is not available after script is updated with newly added create table statements (#20522)
* make open in designer available after a script is updated with a new create table statement * uppercase
This commit is contained in:
@@ -60,9 +60,9 @@ export class FileNode extends BaseProjectTreeItem {
|
||||
const treeItem = new vscode.TreeItem(this.fileSystemUri, vscode.TreeItemCollapsibleState.None);
|
||||
|
||||
treeItem.command = {
|
||||
title: 'Open file',
|
||||
command: 'vscode.open',
|
||||
arguments: [this.fileSystemUri]
|
||||
title: 'Open file with file watcher',
|
||||
command: 'sqlDatabaseProjects.openFileWithWatcher',
|
||||
arguments: [this.fileSystemUri, this]
|
||||
};
|
||||
|
||||
treeItem.contextValue = DatabaseProjectItemType.file;
|
||||
|
||||
Reference in New Issue
Block a user