Symptom

The Compute chip displayed a two-line pill badge — “Average” on the first line and “none” (dimmer) on the second — while all peer method badges (GET, SMTP, READ, PUB) were single-line pills. This made the Compute chip taller than its siblings and visually inconsistent.

Root cause

ComputeConfigDisplayContent in EditCompute.kt placed the operation and range text into two separate Text composables inside a Column inside the badge Surface. The second text used a reduced alpha (0.7f) to distinguish it visually, which introduced the two-line layout and the dimmer secondary text — contrary to the single-line convention used by all other node-type method badges.

Fix

Prevention