Skip to content

Commit

Permalink
added extension to FILEs uploaded from local
Browse files Browse the repository at this point in the history
  • Loading branch information
gbrueckl committed Jul 22, 2024
1 parent b6dfe6d commit e23a00e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit e23a00e

Please sign in to comment.