From cd023c29e6f2acc575ea5736f8de2ccb11bf3a29 Mon Sep 17 00:00:00 2001 From: Sergio Betanzos Date: Wed, 18 May 2022 14:54:46 +0200 Subject: [PATCH] F #5422: Remove redundant styles (#2055) --- src/fireedge/src/client/components/Cards/NicCard.js | 2 +- src/fireedge/src/client/components/Tabs/Vm/Network/index.js | 2 +- src/fireedge/src/client/components/Tabs/Vm/SchedActions.js | 2 +- src/fireedge/src/client/components/Tabs/Vm/Snapshot/index.js | 2 +- src/fireedge/src/client/components/Tabs/Vm/Storage/index.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/fireedge/src/client/components/Cards/NicCard.js b/src/fireedge/src/client/components/Cards/NicCard.js index f70e5636e2..e5f0d45bf1 100644 --- a/src/fireedge/src/client/components/Cards/NicCard.js +++ b/src/fireedge/src/client/components/Cards/NicCard.js @@ -125,7 +125,7 @@ const NicCard = memo(
{actions}
)} {!!ALIAS?.length && ( - + {ALIAS?.map((alias, aliasIdx) => ( { )} - + {nics.map((nic) => { const { IP, MAC, ADDRESS } = nic const key = IP ?? MAC ?? ADDRESS // address only exists form PCI nics diff --git a/src/fireedge/src/client/components/Tabs/Vm/SchedActions.js b/src/fireedge/src/client/components/Tabs/Vm/SchedActions.js index 893446ddc0..338ecdab65 100644 --- a/src/fireedge/src/client/components/Tabs/Vm/SchedActions.js +++ b/src/fireedge/src/client/components/Tabs/Vm/SchedActions.js @@ -137,7 +137,7 @@ const VmSchedulingTab = ({ tabProps: { actions } = {}, id }) => { )} - + {scheduling.map((schedule) => { const { ID, NAME } = schedule diff --git a/src/fireedge/src/client/components/Tabs/Vm/Snapshot/index.js b/src/fireedge/src/client/components/Tabs/Vm/Snapshot/index.js index 539f71ca5c..5a933f950d 100644 --- a/src/fireedge/src/client/components/Tabs/Vm/Snapshot/index.js +++ b/src/fireedge/src/client/components/Tabs/Vm/Snapshot/index.js @@ -63,7 +63,7 @@ const VmSnapshotTab = ({ tabProps: { actions } = {}, id }) => { )} - + {snapshots.map((snapshot) => ( { )} - + {disks.map((disk) => { const isImage = disk.IMAGE_ID !== undefined const imageName = getDiskName(disk)