Fix negative currency display on sensor card#30359
Merged
bramkragten merged 3 commits intodevfrom Mar 27, 2026
Merged
Conversation
Collect all value parts when extracting the display value, and use the last value part index for unit ordering, so negative currency like -$12.00 renders correctly on entity cards and attribute values.
bramkragten
approved these changes
Mar 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Proposed change
Fix negative currency values not displaying properly on entity/sensor cards (e.g., showing just
-instead of-$12.00).Intl.NumberFormat.formatToParts()emitsminusSign/plusSignas separate parts that weren't mapped in the type conversion, so they were silently dropped. This PR:minusSign/plusSignas"value"parts incomputeStateDisplay, preserving native Intl formatting order in the joined output.ha-attribute-valueto collect all"value"parts (not just the first), so the sign and digits are combined for display.Type of change
Additional information
Checklist
If user exposed functionality or configuration variables are added/changed:
To help with the load of incoming pull requests: