Skip to content

Commit b41d4dc

Browse files
authored
Merge pull request #2003 from jasongrout/resolver
Fix URL resolver compilation.
2 parents a47e3e6 + a3a0baf commit b41d4dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/jupyterlab-manager/src/manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class WidgetManager extends ManagerBase<Widget> implements IDisposable {
160160
* Resolve a URL relative to the current notebook location.
161161
*/
162162
resolveUrl(url: string): Promise<string> {
163-
return this.context.resolveUrl(url);
163+
return this.context.urlResolver.resolveUrl(url);
164164
}
165165

166166
/**

0 commit comments

Comments
 (0)