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)