mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:34:28 +08:00
FIX: Suggested Topics was being set inside a computed property
This is bad because changing the `suggested_topics` proeprty could cause a `set` on `suggested_topics`.
This commit is contained in:
parent
67979b2b21
commit
0e0c70019b
|
@ -194,12 +194,7 @@ const Topic = RestModel.extend({
|
|||
@discourseComputed("suggested_topics")
|
||||
suggestedTopics(suggestedTopics) {
|
||||
if (suggestedTopics) {
|
||||
const store = this.store;
|
||||
|
||||
return this.set(
|
||||
"suggested_topics",
|
||||
suggestedTopics.map((st) => store.createRecord("topic", st))
|
||||
);
|
||||
return suggestedTopics.map((st) => this.store.createRecord("topic", st));
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user