mirror of
https://github.com/microsoft/vscode.git
synced 2026-03-04 15:59:39 +00:00
Fix reload command not working
Do not check that the contents are the same inside the webview itself. This is already handled at a higher level
This commit is contained in:
@@ -234,10 +234,6 @@ export class Webview {
|
||||
}
|
||||
|
||||
public set contents(value: string) {
|
||||
if (this._contents === value) {
|
||||
return;
|
||||
}
|
||||
|
||||
this._contents = value;
|
||||
this._send('content', {
|
||||
contents: value,
|
||||
|
||||
Reference in New Issue
Block a user