mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 12:43:54 -06:00
FIX: ensures successive topic hydrates doesn't override category (#12865)
This bug has first been seen when loading similar topics, minimum repro: - Have a topic named "Something Foo Bar" with a category. - Call this in console: ``` Discourse.currentUser.store.find("similar-topic", { title: "Something foo bar", raw: "" }) ``` - Navigate to latest (no full refresh) - The category from the topic should have disappeared
This commit is contained in:
parent
8b87cb07c3
commit
71fd01c8ec
@ -614,6 +614,12 @@ Topic.reopenClass({
|
||||
MUTED: 0,
|
||||
},
|
||||
|
||||
munge(json) {
|
||||
// ensure we are not overriding category computed property
|
||||
delete json.category;
|
||||
return json;
|
||||
},
|
||||
|
||||
createActionSummary(result) {
|
||||
if (result.actions_summary) {
|
||||
const lookup = EmberObject.create();
|
||||
|
Loading…
Reference in New Issue
Block a user