We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 723f63c commit 69d3f12Copy full SHA for 69d3f12
1 file changed
utils/misc/nodejs-terminal/html/terminal-tabs/terminal-tabs.html
@@ -183,13 +183,13 @@
183
mem.forEach(view2=>{
184
185
if(view2!==view){
186
- view.tab.classList.remove('active');
187
- view.tab.classList.add('inactive');
188
- view.terminal.hide();
+ view2.tab.classList.remove('active');
+ view2.tab.classList.add('inactive');
+ view2.terminal.hide();
189
}else{
190
- view.tab.classList.remove('inactive');
191
- view.tab.classList.add('active');
192
- view.terminal.show();
+ view2.tab.classList.remove('inactive');
+ view2.tab.classList.add('active');
+ view2.terminal.show();
193
}
194
195
});
0 commit comments