# 主题页脚的回复按钮可能会破坏帖子

**URL:** https://meta.discourse.org/t/topic-footer-reply-button-can-break-the-thread/260263
**Category:** UX
**Created:** [2023年四月2日 10:21 UTC](https://meta.discourse.org/t/topic-footer-reply-button-can-break-the-thread/260263 "2023-04-02T10:21:49Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [2023年四月2日 11:00 UTC](https://meta.discourse.org/t/topic-footer-reply-button-can-break-the-thread/260263/3 "2023-04-02T11:00:26Z")

</div>

> [@Lilly](#):
>
> 我可能会窃取你的想法并重命名其中一个

是的，但现在可以通过主题组件重命名主题页脚（蓝色）回复，因为主题页脚回复按钮和帖子中的回复按钮具有相同的字符串 `js.topic.reply.title`。因此，如果您更改此设置，两个按钮都会更改。

您可以通过将此添加到新的主题组件或现有组件来更改主题页脚按钮。

通用 / CSS

```scss
#topic-footer-buttons {
  .topic-footer-main-buttons {
    button.btn-primary.create {
      span.d-button-label:after {
        // 在“回复”之后添加此内容
        content: " to topic";
      }
    }
  }
}

```

* * *

这是一个很棒的组件，感谢分享 🙂 我也会检查一下。 ❤

---

_[View the full topic](https://meta.discourse.org/t/topic-footer-reply-button-can-break-the-thread/260263)._
