Skip to content

Conversation

@rchiodo
Copy link

@rchiodo rchiodo commented Apr 23, 2019

For #5414

  • Pull request represents a single change (i.e. not fixing disparate/unrelated things in a single PR)
  • Title summarizes what is changing
  • Has a news entry file (remember to thank yourself!)
  • Has sufficient logging.
  • Has telemetry for enhancements.
  • Unit tests & system/integration tests are added/updated
  • Test plan is updated as appropriate
  • package-lock.json has been regenerated by running npm install (if dependencies have changed)
  • The wiki is updated with any design decisions/details.

@rchiodo rchiodo force-pushed the rchiodo/fix_sorting branch from 61f4d55 to be354c4 Compare April 23, 2019 00:08
@rchiodo rchiodo requested a review from IanMatthewHuff April 23, 2019 00:22
@rchiodo rchiodo self-assigned this Apr 23, 2019
(a: any, b: any): number => {
const aVal = a[sortColumn].toString();
const bVal = b[sortColumn].toString();
const aVal = a[sortColumn] ? a[sortColumn].toString() : '';
Copy link
Member

@IanMatthewHuff IanMatthewHuff Apr 23, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Possible falsy if there is a 0 in a mixed column of strings and ints. #WontFix

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Works with '' or 0 as they sort the same.


In reply to: 277482170 [](ancestors = 277482170)

Copy link
Member

@IanMatthewHuff IanMatthewHuff left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@rchiodo rchiodo merged commit c1c990d into master Apr 23, 2019
@rchiodo rchiodo deleted the rchiodo/fix_sorting branch April 23, 2019 00:26
rchiodo added a commit that referenced this pull request Apr 23, 2019
DonJayamanne added a commit that referenced this pull request Apr 25, 2019
* release: (25 commits)
  Bump version
  remove unexpected trailing commas in JSON files (#5443)
  Fixes to creation of json for Language Server (#5436)
  Update version of Language Server
  Update version (#5435)
  Deprecate travis (#5434)
  Upload vsix to artifacts (#5412)
  Fix the flask app name prompt for launch config. (#5409)
  Reliably end test tasks in Azure Pipelines (#5410)
  fix len error (#5421)
  Fix null cases (#5419)
  Fix sorting of number only lists (#5416)
  add news
  cleanup and functional test
  working first draft
  Fix current cell colors again (#5403)
  Fix data viewer issues (#5405)
  Update 'news' command to directly update the changelog
  Fixes to the test explorer in displaying root (#5383)
  Include pylintrc (#5369)
  ...
@lock lock bot locked as resolved and limited conversation to collaborators Jul 30, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants