Skip to content

Commit c53524a

Browse files
committed
cell language should not be freezed.
1 parent 59dcc5c commit c53524a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/api/common/extHostNotebookDocument.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export class ExtHostCell extends Disposable {
119119
uri: that.uri,
120120
cellKind: this._cellData.cellKind,
121121
document,
122-
language: document.languageId,
122+
get language() { return document.languageId; },
123123
get outputs() { return that._outputs; },
124124
set outputs(value) { that._updateOutputs(value); },
125125
get metadata() { return that._metadata; },

0 commit comments

Comments
 (0)