mirror of
https://github.com/discourse/discourse.git
synced 2025-03-04 20:59:55 +08:00
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…
x
Reference in New Issue
Block a user