Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(material/table): sorting column breaks if contains a number with zero left #25444

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

viniciusschuelter
Copy link

@viniciusschuelter viniciusschuelter commented Aug 11, 2022

Fix #20140 that when sorting column breaks if one or more record contains a number with zero left. This is specifically happen when the value is a number with zero left(ex: '0123'), so the funcion "_isNumberValue" understand this like a number and then the value is convert to 123. The approach i used was to return the default value only in this specific case.

@andrewseguin
Copy link
Contributor

The original issue doesn't appear to be a problem in v14: https://stackblitz.com/edit/angular-elb4wq?file=src%2Fapp%2Ftable-sorting-example.ts

I believe the remaining issue here is that the function doesn't do well to sort an array with both numbers and arrays. Can you confirm this is an issue if the array has a consistent type, e.g. all strings?

@andrewseguin andrewseguin self-assigned this Aug 18, 2022
@viniciusschuelter
Copy link
Author

viniciusschuelter commented Aug 19, 2022

Hey andrew @andrewseguin, this is a bit most specific, check with this data https://stackblitz.com/edit/angular-elb4wq-bbrdge?file=src%2Fapp%2Ftable-sorting-example.ts, i think the "06' should be on the first place, this is happening because '06' is a number with zero left

@andrewseguin
Copy link
Contributor

yeah it does seem like something is off, but I'm trying to determine what the best solution is - I tried testing this internally and there was a failure, and I'll need to see why that is. Thanks for your patience, trying to make sure this stays prioritized

@viniciusschuelter
Copy link
Author

No problems Andrew, i remain available if needed.

@andrewseguin andrewseguin removed their assignment Jun 5, 2023
@josephperrott josephperrott requested a review from a team as a code owner December 18, 2024 17:40
@josephperrott josephperrott requested review from crisbeto and removed request for a team December 18, 2024 17:40
@andrewseguin andrewseguin self-assigned this Jan 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

bug(table-data-source): Sorting of a string column/property breaks if one record contains a number only
2 participants