تغيير مقتطف الموضوع للذهاب إلى أحدث مشاركة بدلاً من تلك الرسالة المحددة

مرحبًا بك في Meta @Fma965 :wave:

أضف هذا إلى تبويب common > header في مكون سمة جديد، ثم أضف هذا المكون إلى سمعتك.

<script type="text/discourse-plugin" version="0.8">
const { on } = require("discourse-common/utils/decorators");

api.modifyClass("component:topic-list-item", {
  @on("didInsertElement")
  _changeExcerptLink() {
    const excerptLink = this.element.querySelector(".topic-excerpt");
    if (excerptLink) {
       excerptLink.href = this.topic.lastReadUrl 
    }
  }
});
</script>

عند النقر على الملخص، سيتم نقل المستخدم إلى آخر منشور قرأه هو.