FIX: broken post in styleguide (#29669)

The base `transformedPost` in dummy-data was missing the topic object.
This commit is contained in:
Joffrey JAFFEUX 2024-11-09 21:46:56 +09:00 committed by GitHub
parent 20effebd51
commit 0669830a5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -169,11 +169,11 @@ export function createData(store) {
canManage: true,
canDelete: true,
post_number: 1,
topic: createTopic(),
};
const postModel = store.createRecord("post", {
...transformedPost,
topic: createTopic(),
});
_data = {