Reorder options menu board (#1606)

- reorder menu
This commit is contained in:
brendanlaschke
2023-09-15 18:22:07 +03:00
committed by GitHub
parent b69f8f4fed
commit 1be6ab2878

View File

@ -182,16 +182,16 @@ export function BoardOptionsDropdownContent({
)}
<StyledDropdownMenuSeparator />
<StyledDropdownMenuItemsContainer>
<MenuItemNavigate
onClick={() => handleMenuNavigate('stages')}
LeftIcon={IconLayoutKanban}
text="Stages"
/>
<MenuItemNavigate
onClick={() => handleMenuNavigate('fields')}
LeftIcon={IconTag}
text="Fields"
/>
<MenuItemNavigate
onClick={() => handleMenuNavigate('stages')}
LeftIcon={IconLayoutKanban}
text="Stages"
/>
</StyledDropdownMenuItemsContainer>
</>
)}