-
Notifications
You must be signed in to change notification settings - Fork 6
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
improve arranged bar handling #268
base: dev-v1.11.7
Are you sure you want to change the base?
Conversation
(item.direction === 'descending' && aCell < bCell) | ||
) | ||
order = 1; | ||
if (item.type === 'number') { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this gets fixed later
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow, big improvements to bars and tables here. If this was an enchilada it'd be the king of enchiladas
@@ -9,7 +9,7 @@ export default function applyFilters() { | |||
(Array.isArray(filter.val) && filter.val.length < filter.choices.length) | |||
) | |||
) { | |||
this.data.filtered = this.data.raw; | |||
this.data.filtered = this.data.raw.slice(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good call
Issues
Closes #123
Closes #256
Closes #159
Closes #206
Closes #207