Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RFR] fix incorrect test data in simple example #3888

Merged
merged 1 commit into from
Oct 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix incorrect test data in simple example
  • Loading branch information
fzaninotto committed Oct 28, 2019
commit 8e992e36bc073d329e91793232919e6850d281f2
10 changes: 5 additions & 5 deletions examples/simple/src/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export default {
views: 143,
average_note: 2.72198,
commentable: true,
pictures: {
first: {
pictures: [
{
name: 'the picture name',
url: 'http://www.photo-libre.fr/paysage/1.jpg',
metas: {
Expand All @@ -30,11 +30,11 @@ export default {
],
},
},
second: {
{
name: 'better name',
url: 'http://www.photo-libre.fr/paysage/2.jpg',
},
},
],
published_at: new Date('2012-08-06'),
tags: [1, 3],
category: 'tech',
Expand Down Expand Up @@ -236,7 +236,7 @@ export default {
tags: [],
category: 'lifestyle',
subcategory: 'fitness',
pictures: { first: {}, second: {} },
pictures: [],
backlinks: [
{
date: '2012-08-07T00:00:00.000Z',
Expand Down