fixed getTabByRelPosition
Currently, it's set at <= 0, which means going to previous tab from 2nd tab will result in an error, as it returns null. Changing it to < 0 fixes this issue.
This commit is contained in:
parent
49525b8634
commit
a01a4f00f6
1 changed files with 1 additions and 1 deletions
|
@ -228,7 +228,7 @@ class TabGroup extends HTMLElement {
|
|||
|
||||
getTabByRelPosition(position: number) {
|
||||
position = this.getActiveTab().getPosition() + position;
|
||||
if (position <= 0) {
|
||||
if (position < 0) {
|
||||
return null;
|
||||
}
|
||||
return this.getTabByPosition(position);
|
||||
|
|
Loading…
Reference in a new issue