DEV: Implement text() for SidebarChatMyThreadsSection (#25371)

In normal use, this `text()` getter is never called. However, when running with the Ember inspector, it is eagerly evaluated and hits throws the "not implemented" error in the base class.
This commit is contained in:
David Taylor 2024-01-23 10:16:47 +00:00 committed by GitHub
parent 3e0e5112b4
commit 9d3800adec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -88,6 +88,10 @@ export default {
get links() {
return [new SidebarChatMyThreadsSectionLink()];
}
get text() {
return null;
}
};
return SidebarChatMyThreadsSection;