admin(ui): make the Nest edit page more responsive
This commit is contained in:
parent
bbd14c41c8
commit
0d2fbfddc0
2 changed files with 5 additions and 5 deletions
|
@ -3,7 +3,7 @@ import http, { FractalResponseData } from '@/api/http';
|
|||
export interface Egg {
|
||||
id: number;
|
||||
uuid: string;
|
||||
nest_id: number;
|
||||
nestId: number;
|
||||
author: string;
|
||||
name: string;
|
||||
description: string | null;
|
||||
|
@ -27,7 +27,7 @@ export interface Egg {
|
|||
export const rawDataToEgg = ({ attributes }: FractalResponseData): Egg => ({
|
||||
id: attributes.id,
|
||||
uuid: attributes.uuid,
|
||||
nest_id: attributes.nest_id,
|
||||
nestId: attributes.nest_id,
|
||||
author: attributes.author,
|
||||
name: attributes.name,
|
||||
description: attributes.description,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue