File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
packages/core/frontend/sirius-components-core/src/workbench Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,12 @@ export const Panels = forwardRef<WorkbenchPanelsHandle | null, PanelsProps>(
273273 < PanelGroup direction = "vertical" >
274274 { leftSelectedContributions . map ( ( leftContribution , index ) => (
275275 < >
276- < Panel key = { leftContribution . id } className = { classes . panel } minSize = { 10 } >
276+ < Panel
277+ id = { leftContribution . id }
278+ key = { leftContribution . id }
279+ order = { index }
280+ className = { classes . panel }
281+ minSize = { 10 } >
277282 < WorkbenchPart
278283 editingContextId = { editingContextId }
279284 readOnly = { readOnly }
@@ -325,7 +330,12 @@ export const Panels = forwardRef<WorkbenchPanelsHandle | null, PanelsProps>(
325330 < PanelGroup direction = "vertical" >
326331 { rightSelectedContributions . map ( ( rightContribution , index ) => (
327332 < >
328- < Panel key = { rightContribution . id } className = { classes . panel } minSize = { 10 } >
333+ < Panel
334+ id = { rightContribution . id }
335+ key = { rightContribution . id }
336+ order = { index }
337+ className = { classes . panel }
338+ minSize = { 10 } >
329339 < WorkbenchPart
330340 editingContextId = { editingContextId }
331341 readOnly = { readOnly }
You can’t perform that action at this time.
0 commit comments