Skip to content

Commit

Permalink
Update dates
Browse files Browse the repository at this point in the history
  • Loading branch information
blushi committed Mar 9, 2021
1 parent cbfc758 commit 9b8e0ea
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
6 changes: 3 additions & 3 deletions web-components/src/components/table/table.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ const data: Data[] = [
{
name: 'Monitoring',
type: 'Monitoring',
date: 'March 15, 2020',
date: '2020-03-15T00:00:00.000Z',
url: 'test',
},
{
name: 'Issuance Documents',
type: 'Issuance',
date: 'February 10, 2020',
date: '2020-03-15T00:00:00.000Z',
url: 'test',
},
{
name: 'Project Review',
type: 'Project Review',
date: 'November 1, 2019',
date: '2020-03-15T00:00:00.000Z',
url: 'test',
},
];
Expand Down
7 changes: 3 additions & 4 deletions web-components/src/components/tabs/tabs.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import CreditDetails, { CreditInfoProps } from 'web-components/lib/components/cr
export default {
title: 'Components|Tabs',
component: Tabs,

};

const details: CreditInfoProps = {
Expand All @@ -29,19 +28,19 @@ const data: Data[] = [
{
name: 'Monitoring',
type: 'Monitoring',
date: new Date('March 15, 2020'),
date: '2020-03-15T00:00:00.000Z',
url: 'test',
},
{
name: 'Issuance Documents',
type: 'Issuance',
date: new Date('February 10, 2020'),
date: '2020-03-15T00:00:00.000Z',
url: 'test',
},
{
name: 'Project Review',
type: 'Project Review',
date: new Date('November 1, 2019'),
date: '2020-03-15T00:00:00.000Z',
url: 'test',
},
];
Expand Down
12 changes: 6 additions & 6 deletions web-registry/src/__snapshots__/storyshots.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -25974,19 +25974,19 @@ exports[`Storyshots Components|Table Mrv Table 1`] = `
rows={
Array [
Object {
"date": "March 15, 2020",
"date": "2020-03-15T00:00:00.000Z",
"name": "Monitoring",
"type": "Monitoring",
"url": "test",
},
Object {
"date": "February 10, 2020",
"date": "2020-03-15T00:00:00.000Z",
"name": "Issuance Documents",
"type": "Issuance",
"url": "test",
},
Object {
"date": "November 1, 2019",
"date": "2020-03-15T00:00:00.000Z",
"name": "Project Review",
"type": "Project Review",
"url": "test",
Expand Down Expand Up @@ -26367,19 +26367,19 @@ exports[`Storyshots Components|Tabs Mrv Tabs 1`] = `
rows={
Array [
Object {
"date": 2020-03-14T23:00:00.000Z,
"date": "2020-03-15T00:00:00.000Z",
"name": "Monitoring",
"type": "Monitoring",
"url": "test",
},
Object {
"date": 2020-02-09T23:00:00.000Z,
"date": "2020-03-15T00:00:00.000Z",
"name": "Issuance Documents",
"type": "Issuance",
"url": "test",
},
Object {
"date": 2019-10-31T23:00:00.000Z,
"date": "2020-03-15T00:00:00.000Z",
"name": "Project Review",
"type": "Project Review",
"url": "test",
Expand Down

0 comments on commit 9b8e0ea

Please sign in to comment.