Skip to content

Commit

Permalink
Update view.js (#1298) (#1299)
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzroeder committed Jun 15, 2024
1 parent f75129b commit 260d7d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ view.View = class {
sidebar.on('select', (sender, value) => {
this.scrollTo(this._graph.activate(value));
});
this._sidebar.open(sidebar, 'Connection Properties');
this._sidebar.push(sidebar, 'Connection Properties');
} catch (error) {
this.error(error, 'Error showing connection properties.', null);
}
Expand All @@ -1098,7 +1098,7 @@ view.View = class {
sidebar.on('select', (sender, value) => {
this.scrollTo(this._graph.activate(value));
});
this._sidebar.open(sidebar, 'Tensor Properties');
this._sidebar.push(sidebar, 'Tensor Properties');
} catch (error) {
this.error(error, 'Error showing tensor properties.', null);
}
Expand Down

0 comments on commit 260d7d4

Please sign in to comment.