[FA-misc] Various UI updates
This commit is contained in:
@@ -18,7 +18,12 @@
|
||||
error = null;
|
||||
|
||||
try {
|
||||
const result = await client.query(NovelsDocument, { first: 5 }).toPromise();
|
||||
const result = await client
|
||||
.query(NovelsDocument, {
|
||||
first: 5,
|
||||
order: [{ lastUpdatedTime: 'DESC' }]
|
||||
})
|
||||
.toPromise();
|
||||
|
||||
if (result.error) {
|
||||
error = result.error.message;
|
||||
|
||||
Reference in New Issue
Block a user