-
Notifications
You must be signed in to change notification settings - Fork 14.4k
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: Remove export CSV in old filter box #16592
fix: Remove export CSV in old filter box #16592
Conversation
Codecov Report
@@ Coverage Diff @@
## master #16592 +/- ##
=======================================
Coverage 76.72% 76.72%
=======================================
Files 1003 1003
Lines 53836 53838 +2
Branches 7287 7289 +2
=======================================
+ Hits 41303 41305 +2
Misses 12293 12293
Partials 240 240
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
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.
LGTM, thanks for the fix!
<Menu.Item key={MENU_KEYS.EXPORT_CSV}>{t('Export CSV')}</Menu.Item> | ||
)} | ||
{isFeatureEnabled(FeatureFlag.ALLOW_FULL_CSV_EXPORT) && | ||
{this.props.slice.viz_type !== 'filter_box' && |
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.
Future improvement idea: maybe we should have a property enableExportCSV
on ChartMetadata
which defaults to true
(cherry picked from commit 3fe2e6e)
SUMMARY
There is no reason to export Filter box to CSV, we should remove Export CSV link as well as Export Full CSV link in filter box.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
Before
After
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION