Not possible to reorder pages

Hi Retool team,

Until not long ago it was possible to drag and drop the pages left menu bar so that they can be ordered (and consequently appear in a given order in the navigation panel). Now it is no longer possible to reorder the pages, which has made me apply an unnecessary hack in the mapped data source for the navigation panel:

{{ retoolContext.pages.slice().sort((a, b) => (a.id === "selectArea" ? -1 : b.id === "selectArea" ? 1 : 0)) }}

Am I missing something, was this moved somewhere else?

2 Likes

+1 Running into the same problem today.

1 Like

Interesting! Thanks for flagging this. It seems that reordering pages via drag and drop was never fully functional in the sense that those changes were not persisted outside of the client session. In order to avoid future confusion, we've fully disabled drag and drop until it actually works. :sweat_smile:

I've bumped the corresponding ticket internally and will provide an update here as soon as I can!

2 Likes