Improving naming scheme for Compare Git Revision
> The `from / target / start_ref` vs `to / source / head_ref` correspondence remains confusing | Current (confusing!) | Suggestion (better!) | | ------ | ------ | | ![image](/uploads/3182791db6ee0f64d527d2c172474c81/image.png) | ![image](/uploads/6e2a2ad0eeac1ec1de42afe1fb6c4d29/image.png) | The naming of this is super confusing as mentioned by @nick.thomas > https://gitlab.com/gitlab-org/gitlab/-/merge_requests/52967#note_501807906. When I was working on this, it also felt super counter-intuitive that we referred "target" as "from" and "source" as "to". Let's clear this muddy water! And adopt a better naming scheme and just use "Source" and "Target" in both the ~backend and ~frontend 🙌 ## Example (frontend) ```diff - params-name="from" + params-name="source" ``` _besides the vue components, we'll probably also need to update the feature specs_
issue