Browse Source

<Space key={id}>

visuddhinanda 2 years ago
parent
commit
f6efd30e04
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dashboard/src/components/blog/TopArticleCard.tsx

+ 1 - 1
dashboard/src/components/blog/TopArticleCard.tsx

@@ -21,7 +21,7 @@ const IconParamList = (prop: IWidgetIconParamList) => {
       <Space>
         {prop.data.map((item, id) => {
           return (
-            <Space>
+            <Space key={id}>
               {item.icon} {item.label}
             </Space>
           );