Skip to content

Commit

Permalink
Pass object field instead of method argument
Browse files Browse the repository at this point in the history
Signed-off-by: Vladyslav Zhukovskyi <vzhukovs@redhat.com>
  • Loading branch information
vzhukovs committed Dec 15, 2020
1 parent 742c0da commit aa88fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugin-ext/src/plugin/webviews.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export class WebviewImpl implements theia.Webview {
this.checkIsDisposed();
if (this._html !== value) {
this._html = value;
this.proxy.$setHtml(this.viewId, value);
this.proxy.$setHtml(this.viewId, this._html);
}
}

Expand Down

0 comments on commit aa88fd7

Please sign in to comment.