Skip to content
This repository was archived by the owner on Aug 31, 2022. It is now read-only.

Commit 1e7fc77

Browse files
aquibbaiggurbirkalsi
authored andcommitted
modifies the query for fetching urls from prisma ep
1 parent 634beed commit 1e7fc77

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pages/Explore/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ class Explore extends Component {
131131
},
132132
{
133133
title: 'Date Created',
134-
dataIndex: 'createdAt',
135-
key: 'createdAt',
134+
dataIndex: 'created',
135+
key: 'created',
136136
defaultSortOrder: 'descend',
137137
sorter: (a, b) => Date.parse(a.createdAt) - Date.parse(b.createdAt),
138138
render: val => (

src/services/explore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export async function querySharedSessions(params) {
1414
id
1515
config
1616
description
17-
createdAt
17+
created
1818
}
1919
}`,
2020
},

0 commit comments

Comments
 (0)