Skip to content

Commit

Permalink
replaced calls to getResourceURL (#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
rsasch authored Feb 8, 2019
1 parent 551bc29 commit 7d37549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class JobFailuresTableComponent implements OnInit {
}

getResourceUrl(url: string): string {
return ResourceUtils.getResourceURL(url);
return ResourceUtils.getDirectoryBrowserURL(url);
}

getTaskDirectory(task: TaskMetadata): string {
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/job-details/tabs/tabs.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class JobTabsComponent implements OnInit, OnChanges {
}

getResourceUrl(url: string): string {
return ResourceUtils.getResourceURL(url);
return ResourceUtils.getDirectoryBrowserURL(url);
}

getTaskDirectory(task: TaskMetadata): string {
Expand Down

0 comments on commit 7d37549

Please sign in to comment.