Topic footer Reply button can break the thread

Yeah, but renaming the topic footer (blue) Reply is possible now with a theme component because the topic footer reply button and reply button in posts has a same string js.topic.reply.title. So if you change this both button will change.

You can change it for the topic footer button with adding this to a new theme component or an existing one.

Common / CSS

#topic-footer-buttons {
  .topic-footer-main-buttons {
    button.btn-primary.create {
      span.d-button-label:after {
        // Adding this content after Reply
        content: " to topic";
      }
    }
  }
}

This is a great component thanks for sharing :slightly_smiling_face: I will check this too. :heart:

4 Likes