Interestingly, the second Panel in a Tabs, seems not movable:
{F313580,size=full}
But it can :) If I click on {nav Move to Left}, it works! Even if it's grayed out.
----
Another thing:
If you take the First panel, and you move to the Right, it says this nonsense :)
{F313581,size=full}
Transcript
> This is already the first tab. It can not move any farther to the left.
----
I can reproduce this problem on this Dashboard:
https://phab.wmflabs.org/dashboard/view/12/
NOTE: the Dashboard is mine, the first panel is mine, __the other panel is not mine and not editable by me__. Maybe that is the problem.
----
Probably, the panels should be movable on the Dashboard only if you can:
- Edit the Dashboard
But at the moment, these actions are grayed out if you cannot:
- Edit the Dashboard
- Edit the Panel itself
```
name=PhabricatorDashboardTabsPanelType.php
$dropdown_menu->addAction(
id(new PhabricatorActionView())
->setName(pht('Move Tab Left'))
->setIcon('fa-chevron-left')
->setHref($prev_uri)
->setWorkflow(true)
->setDisabled(($prev_key === null) || !$can_edit));
$dropdown_menu->addAction(
id(new PhabricatorActionView())
->setName(pht('Move Tab Right'))
->setIcon('fa-chevron-right')
->setHref($next_uri)
->setWorkflow(true)
->setDisabled(($next_key === null) || !$can_edit));
```
So maybe the issue is just about that `|| !$can_edit`, that should be removed.