We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb898c6 commit c9915f4Copy full SHA for c9915f4
packages/react-devtools-shared/src/devtools/views/Profiler/SnapshotCommitList.js
@@ -217,7 +217,11 @@ function List({
217
218
// Only some React versions include commit durations.
219
// Show a richer tooltip only for builds that have that info.
220
- if (effectDuration !== null || passiveEffectDuration !== null) {
+ if (
221
+ effectDuration !== null ||
222
+ passiveEffectDuration !== null ||
223
+ priorityLevel !== null
224
+ ) {
225
tooltipLabel = (
226
<ul className={styles.TooltipList}>
227
{priorityLevel !== null && (
0 commit comments