DEV: Make basic-assigned-topic-list a real component

Re-exporting the BasicTopicList component as-is leads to unexpected behavior when colocating templates because `BasicAssignedTopicList` === `BasicTopicList`. Extending it gives the component its own identity.

Similar to 8ba7b0727a
This commit is contained in:
David Taylor 2023-02-14 13:38:11 +00:00
parent e3a5db4e63
commit 8533d7b1e7
No known key found for this signature in database
GPG Key ID: 46904C18B1D3F434
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
import BasicTopicList from "discourse/components/basic-topic-list";
export default BasicTopicList;
export default class BasicAssignedTopicList extends BasicTopicList {}