Outline: include ID and label in element diff key

This commit is contained in:
Aaron Fenyes 2024-09-29 23:41:16 -07:00
parent 70bd39b9e5
commit edace8e4ea

View File

@ -148,7 +148,12 @@ pub fn Outline() -> View {
} }
} }
}, },
key=|(key, elt)| (key.clone(), elt.constraints.clone()) key=|(key, elt)| (
key.clone(),
elt.id.clone(),
elt.label.clone(),
elt.constraints.clone()
)
) )
} }
} }