mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Fix: keep element selection after layer move up/down (#29634)
This commit is contained in:
parent
15f95e8b8e
commit
74babb2f76
1 changed files with 4 additions and 1 deletions
|
@ -344,7 +344,10 @@ export const aeroelastic = ({ dispatch, getState }) => {
|
|||
populateWithElements(page);
|
||||
}
|
||||
|
||||
if (action.type !== setMultiplePositions.toString()) {
|
||||
if (
|
||||
action.type !== setMultiplePositions.toString() &&
|
||||
action.type !== elementLayer.toString()
|
||||
) {
|
||||
unselectShape(prevPage);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue