Skip to content

Commit

Permalink
fix new object placement
Browse files Browse the repository at this point in the history
  • Loading branch information
kfarr committed Jul 12, 2024
1 parent 416c324 commit d59527d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ const AddLayerPanel = ({ onClose, isAddLayerPanelOpen }) => {
}
customGroupEl.appendChild(newEntity);
} else {
const streetContainer = document.querySelector('street-container');
const streetContainer = document.querySelector('#street-container');
// apppend element as a child of street-container
if (streetContainer) {
streetContainer.appendChild(newEntity);
Expand Down

0 comments on commit d59527d

Please sign in to comment.