Commit d654255d by Dominik Prokop Committed by GitHub

NewPanelEditor: adjust panel menu items (#23888)

parent ff4d199c
...@@ -84,14 +84,16 @@ export function getPanelMenu( ...@@ -84,14 +84,16 @@ export function getPanelMenu(
const menu: PanelMenuItem[] = []; const menu: PanelMenuItem[] = [];
menu.push({ if (!panel.isEditing) {
text: 'View', menu.push({
iconClassName: 'eye', text: 'View',
onClick: onViewPanel, iconClassName: 'eye',
shortcut: 'v', onClick: onViewPanel,
}); shortcut: 'v',
});
}
if (dashboard.canEditPanel(panel)) { if (dashboard.canEditPanel(panel) && !panel.isEditing) {
menu.push({ menu.push({
text: 'Edit', text: 'Edit',
iconClassName: 'edit', iconClassName: 'edit',
...@@ -185,15 +187,17 @@ export function getPanelMenu( ...@@ -185,15 +187,17 @@ export function getPanelMenu(
} }
} }
menu.push({ if (!panel.isEditing) {
type: 'submenu', menu.push({
text: 'More...', type: 'submenu',
iconClassName: 'cube', text: 'More...',
subMenu: subMenu, iconClassName: 'cube',
onClick: onMore, subMenu: subMenu,
}); onClick: onMore,
});
}
if (dashboard.canEditPanel(panel)) { if (dashboard.canEditPanel(panel) && !panel.isEditing) {
menu.push({ type: 'divider' }); menu.push({ type: 'divider' });
menu.push({ menu.push({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment