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:
parent
3e0e5112b4
commit
9d3800adec
|
@ -88,6 +88,10 @@ export default {
|
|||
get links() {
|
||||
return [new SidebarChatMyThreadsSectionLink()];
|
||||
}
|
||||
|
||||
get text() {
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
return SidebarChatMyThreadsSection;
|
||||
|
|
Loading…
Reference in New Issue