Fixes #60047: Running scripts with right click not giving feedback when it ends.

This commit is contained in:
Dirk Baeumer 2018-10-15 15:47:12 +02:00
parent 2c93ec4a2d
commit 5e2c5191a8

View file

@ -91,7 +91,7 @@ namespace TaskPresentationOptionsDTO {
}
export function to(value: TaskPresentationOptionsDTO): PresentationOptions {
if (value === void 0 || value === null) {
return undefined;
return { reveal: RevealKind.Always, echo: true, focus: false, panel: PanelKind.Shared, showReuseMessage: true };
}
return Objects.assign(Object.create(null), value);
}