From 0314b506d276ac23d0eba29109df6e55cf3f698c Mon Sep 17 00:00:00 2001 From: Taewan Kim Date: Fri, 27 Jun 2025 19:59:42 +0900 Subject: [PATCH] Fix the alignment issue where the DME value in the cell is top aligned It is fixed to center. Change-Id: I0afc2faa3d487ef05564aea5e938fe525dc65843 Signed-off-by: Taewan Kim --- src/components/home/status/ListFeatureGroup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/home/status/ListFeatureGroup.js b/src/components/home/status/ListFeatureGroup.js index 44f7038..65b26e3 100644 --- a/src/components/home/status/ListFeatureGroup.js +++ b/src/components/home/status/ListFeatureGroup.js @@ -95,8 +95,8 @@ const ListFeatureGroup = props => { }; const handleDme = dme => { - if (dme === true) return

Enabled

; - else return

Disabled

; + if (dme === true) return
Enabled
; + else return
Disabled
; }; const columns = useMemo( -- 2.16.6