We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af5bf2 commit 3811df9Copy full SHA for 3811df9
src/client/extras/Sync.TabPane.js
@@ -1134,7 +1134,7 @@ Extras.Sync.TabPane = Core.extend(Echo.Render.ComponentSync, {
1134
if (e.keyCode == 37) {
1135
// left
1136
if (activeTabIx != -1) {
1137
- if (activeTabIx == 0) {
+ if (activeTabIx === 0) {
1138
this.component.doTabSelect(this._tabs[this._tabs.length - 1].id);
1139
} else {
1140
this.component.doTabSelect(this._tabs[activeTabIx - 1].id);
0 commit comments