I want to reorder menu links in the sidebar navigation. Since they are sorted alphabeticaly I used navigationSort as per documentation
protected static ?int $navigationSort = 0;
protected static ?int $navigationSort = 0;
but link I wanted to move stayed on the same place. Only time it moved was if I used negative values. I've then tried and added navigationSort value for each item in the menu and I was able to reorder the list. Now, question is was this the correct way of ordering items, and what you do if you have more links? You need to manually add values or is there some other method I didn't found.