editor: Implement `From` instead of `Into` for converting `BlockId`s to `ElementId`s (#14839)
Marshall Bowers
created
This PR replaces the `Into<ElementId> for BlockId` implementation with
`From<BlockId> for ElementId`.
This keeps in line with Rust's guidance for preferring implementing
`From`, and gives us more flexibility when converting.
Release Notes:
- N/A