File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
packages/databricks-vscode/src/ui/bundle-resource-explorer Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export class JobTreeNode implements BundleResourceExplorerTreeNode {
2222 return undefined ;
2323 }
2424
25- return `${ host . toString ( ) } jobs /${ this . data . id } ` ;
25+ return `${ host . toString ( ) } #job /${ this . data . id } ` ;
2626 }
2727
2828 constructor (
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export class TaskRunStatusTreeNode implements BundleResourceExplorerTreeNode {
2424 return undefined ;
2525 }
2626
27- return `${ host . toString ( ) } jobs /${ this . jobId } /runs /${
27+ return `${ host . toString ( ) } #job /${ this . jobId } /run /${
2828 this . runDetails . run_id
2929 } `;
3030 }
Original file line number Diff line number Diff line change @@ -33,7 +33,9 @@ export class TaskTreeNode implements BundleResourceExplorerTreeNode {
3333 return undefined ;
3434 }
3535
36- return `${ host . toString ( ) } jobs/${ this . jobId } /tasks/${ this . taskKey } ` ;
36+ return `${ host . toString ( ) } #job/${ this . jobId } /tasks/task/${
37+ this . taskKey
38+ } `;
3739 }
3840 constructor (
3941 private readonly context : ExtensionContext ,
You can’t perform that action at this time.
0 commit comments