Skip to content

Commit

Permalink
[Dashboard] Fix panel title not updating (elastic#166004)
Browse files Browse the repository at this point in the history
One line fix for panel title not updating on add to library
  • Loading branch information
ThomThomson authored Sep 11, 2023
1 parent 32d743a commit 1b5f105
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class ClonePanelAction implements Action<ClonePanelActionContext> {
explicitInput: {
...(await embeddable.getInputAsValueType()),
hidePanelTitles: panelToClone.explicitInput.hidePanelTitles,
title: newTitle,
...(newTitle ? { title: newTitle } : {}),
id,
},
};
Expand Down

0 comments on commit 1b5f105

Please sign in to comment.