diff --git a/CHANGELOG.md b/CHANGELOG.md index ddac0b0..36fdafd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Release Notes +**v2.3.4:** +- fixed another issue with regular Python files (type FILE) in the workspace when created locally ([195](/../../issues/195)) + **v2.3.3:** - fixed issue with regular Python files (type FILE) in the workspace when created locally ([195](/../../issues/195)) diff --git a/package.json b/package.json index a9a0910..2c984ec 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "databricks-vscode", "displayName": "Databricks Power Tools", "description": "Run notebooks cell-by-cell, browse and edit your Databricks Workspace, DBFS, Clusters, Jobs, Secrets, Repos and SQL. Supports Azure Databricks, Databricks on AWS and Databricks on GCP.", - "version": "2.3.3", + "version": "2.3.4", "publisher": "paiqo", "icon": "resources/databricks_extension.png", "author": { diff --git a/src/vscode/treeviews/workspaces/DatabricksWorkspaceDirectory.ts b/src/vscode/treeviews/workspaces/DatabricksWorkspaceDirectory.ts index 4dd78f1..8f1995e 100644 --- a/src/vscode/treeviews/workspaces/DatabricksWorkspaceDirectory.ts +++ b/src/vscode/treeviews/workspaces/DatabricksWorkspaceDirectory.ts @@ -163,7 +163,7 @@ export class DatabricksWorkspaceDirectory extends DatabricksWorkspaceTreeItem { localItems.push(new DatabricksWorkspaceNotebook(shownLocalRelativePath, -1, languageFileExtension, localUri, this)); } else { - localItems.push(new DatabricksWorkspaceFile(shownLocalRelativePath, -1, localUri, this)); + localItems.push(new DatabricksWorkspaceFile(shownLocalRelativePath + languageFileExtension.extension, -1, localUri, this)); } } else {