Clean up TAB_FIRST operation
This commit is contained in:
parent
2c97f8a4f3
commit
d0df1a05a1
3 changed files with 4 additions and 4 deletions
|
@ -21,7 +21,7 @@ const exec = (operation, tab) => {
|
|||
case operations.TAB_NEXT:
|
||||
return tabs.selectNextTab(tab.index, operation.count);
|
||||
case operations.TAB_FIRST:
|
||||
return tabs.selectFirstTab(tab.index, operation.count);
|
||||
return tabs.selectFirstTab();
|
||||
case operations.TAB_RELOAD:
|
||||
return tabs.reload(tab, operation.cache);
|
||||
case operations.ZOOM_IN:
|
||||
|
|
Reference in a new issue