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}
|
getItemProps={getItemProps}
|
||||||
highlightedIndex={highlightedIndex}
|
highlightedIndex={highlightedIndex}
|
||||||
items={getViews(actions)}
|
items={getViews(actions)}
|
||||||
offset={getActions(actions).length}
|
offset={0}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{hasActions(actions) && (
|
{hasActions(actions) && (
|
||||||
|
@ -78,7 +78,7 @@ const Navigator: React.FC = () => {
|
||||||
getItemProps={getItemProps}
|
getItemProps={getItemProps}
|
||||||
highlightedIndex={highlightedIndex}
|
highlightedIndex={highlightedIndex}
|
||||||
items={getActions(actions)}
|
items={getActions(actions)}
|
||||||
offset={0}
|
offset={getViews(actions).length}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue