mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-11 04:22:19 +00:00
revert: ordering by alphabetical
This commit is contained in:
@@ -10,6 +10,7 @@ export type SDKMethod = {
|
||||
title: string;
|
||||
description: string;
|
||||
demo: string;
|
||||
group: string;
|
||||
parameters: Array<{
|
||||
name: string;
|
||||
description: string;
|
||||
@@ -330,7 +331,7 @@ export async function getService(
|
||||
data.methods.push({
|
||||
id: operation['x-appwrite'].method,
|
||||
group: operation['x-appwrite'].group,
|
||||
demo: demo ?? '',
|
||||
demo: typeof demo === 'string' ? demo : '',
|
||||
title: operation.summary ?? '',
|
||||
description: operation.description ?? '',
|
||||
parameters: parameters ?? [],
|
||||
|
||||
Reference in New Issue
Block a user