Merge pull request #2646 from AreYouRlyScared/#2608

Add admin area link to view config
This commit is contained in:
Dane Everitt 2020-11-08 11:48:22 -08:00 committed by GitHub
commit 74b1776c00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View file

@ -13,6 +13,7 @@ export interface Allocation {
export interface Server {
id: string;
internalId: number;
uuid: string;
name: string;
node: string;
@ -44,6 +45,7 @@ export interface Server {
export const rawDataToServerObject = ({ attributes: data }: FractalResponseData): Server => ({
id: data.identifier,
internalId: data.internal_id,
uuid: data.uuid,
name: data.name,
node: data.node,