@samitouri / QOS-React-2 / commits / 724e7bfb40

[DevTools] Repeat the "name" if there's no short description in groups (#34894)

It looks weird when the row is blank when there's no short description for the entry in a group. <img width="328" height="436" alt="Screenshot 2025-10-17 at 12 25 30 AM" src="https://github.com/user-attachments/assets/12f5c55f-a37f-4b6d-913e-f763cec6b211" />

Sebastian Markbåge committed Oct 17, 2025 at 18:52 UTC 724e7bfb40ad4f08b7f59f23db22e5fa7eda965a
1 file changed +1 -1
packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSuspendedBy.js
+1 -1
@@ -169,7 +169,7 @@ function SuspendedByRow({
169 type={isOpen ? 'expanded' : 'collapsed'}
170 />
171 <span className={styles.CollapsableHeaderTitle}>
172 - {skipName ? shortDescription : name}
172 + {skipName && shortDescription !== '' ? shortDescription : name}
173 </span>
174 {skipName || shortDescription === '' ? null : (
175 <>