Fix the alignment issue where the DME value in the cell is top aligned 19/14619/3
authorTaewan Kim <t25.kim@samsung.com>
Fri, 27 Jun 2025 10:59:42 +0000 (19:59 +0900)
committerTaewan Kim <t25.kim@samsung.com>
Fri, 27 Jun 2025 11:03:45 +0000 (20:03 +0900)
It is fixed to center.

Change-Id: I0afc2faa3d487ef05564aea5e938fe525dc65843
Signed-off-by: Taewan Kim <t25.kim@samsung.com>
src/components/home/status/ListFeatureGroup.js

index 44f7038..65b26e3 100644 (file)
@@ -95,8 +95,8 @@ const ListFeatureGroup = props => {
   };
 
   const handleDme = dme => {
-    if (dme === true) return <p>Enabled</p>;
-    else return <p>Disabled</p>;
+    if (dme === true) return <div>Enabled</div>;
+    else return <div>Disabled</div>;
   };
 
   const columns = useMemo(