Skip to content

Commit

Permalink
Fix currentView accessibility after rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Thomas <ianthomas23@gmail.com>
  • Loading branch information
ianthomas23 committed May 31, 2024
1 parent 4f42a4c commit ca9fa06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/core/streamingviewbasedjsonmodel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ export class StreamingViewBasedJSONModel extends ViewBasedJSONModel {
this._currentView.setData(options.value, options.row, options.column);
}

protected get currentView(): StreamingView {
get currentView(): StreamingView {
return this._currentView;
}

protected set currentView(view: StreamingView) {
set currentView(view: StreamingView) {
super.currentView = view;
}

Expand Down

0 comments on commit ca9fa06

Please sign in to comment.