mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
FIX: If there are no featured topics in a category, don't fail.
This commit is contained in:
parent
7bbb32bac2
commit
bdac13b636
|
@ -111,7 +111,10 @@ Discourse.Category = Discourse.Model.extend({
|
|||
}.property(),
|
||||
|
||||
latestTopic: function(){
|
||||
return this.get("topics")[0];
|
||||
var topics = this.get('topics');
|
||||
if (topics && topics.length) {
|
||||
return topics[0]
|
||||
}
|
||||
}.property("topics"),
|
||||
|
||||
topicTrackingState: function(){
|
||||
|
|
Loading…
Reference in New Issue
Block a user