admin(ui): make the Nest edit page more responsive

This commit is contained in:
Matthew Penner 2021-01-08 14:55:34 -07:00
parent bbd14c41c8
commit 0d2fbfddc0
2 changed files with 5 additions and 5 deletions

View file

@ -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,