Insert a placeholder into the text template, such as Artist.
Insert another placeholder, like Title.
Expected
The template should be {{Artist}}{{Title}}.
Actual
The template is {{Title}}{{Artist}} because the insertion point stayed at position 0 after step 2, so {{Title}} was prepended instead of being appended.
Steps
Artist
.Title
.Expected
The template should be
{{Artist}}{{Title}}
.Actual
The template is
{{Title}}{{Artist}}
because the insertion point stayed at position 0 after step 2, so{{Title}}
was prepended instead of being appended.