mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Dashboard] Fix panel title not updating (#166004)
One line fix for panel title not updating on add to library
This commit is contained in:
parent
32d743a9f0
commit
1b5f105c25
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ export class ClonePanelAction implements Action<ClonePanelActionContext> {
|
|||
explicitInput: {
|
||||
...(await embeddable.getInputAsValueType()),
|
||||
hidePanelTitles: panelToClone.explicitInput.hidePanelTitles,
|
||||
title: newTitle,
|
||||
...(newTitle ? { title: newTitle } : {}),
|
||||
id,
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue