Skip to content

Commit

Permalink
Merge pull request #2003 from jasongrout/resolver
Browse files Browse the repository at this point in the history
Fix URL resolver compilation.
  • Loading branch information
vidartf authored Mar 20, 2018
2 parents a47e3e6 + a3a0baf commit b41d4dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jupyterlab-manager/src/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class WidgetManager extends ManagerBase<Widget> implements IDisposable {
* Resolve a URL relative to the current notebook location.
*/
resolveUrl(url: string): Promise<string> {
return this.context.resolveUrl(url);
return this.context.urlResolver.resolveUrl(url);
}

/**
Expand Down

0 comments on commit b41d4dc

Please sign in to comment.