Fix action ordering
This commit is contained in:
parent
340e00f030
commit
ebf386dfb5
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ const Navigator: React.FC = () => {
|
|||
getItemProps={getItemProps}
|
||||
highlightedIndex={highlightedIndex}
|
||||
items={getViews(actions)}
|
||||
offset={getActions(actions).length}
|
||||
offset={0}
|
||||
/>
|
||||
)}
|
||||
{hasActions(actions) && (
|
||||
|
@ -78,7 +78,7 @@ const Navigator: React.FC = () => {
|
|||
getItemProps={getItemProps}
|
||||
highlightedIndex={highlightedIndex}
|
||||
items={getActions(actions)}
|
||||
offset={0}
|
||||
offset={getViews(actions).length}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue