Skip to content

Commit

Permalink
Feature/default enable csv dashboard (elastic#44048)
Browse files Browse the repository at this point in the history
* Enable panel-action downloads by default

* Updating snapshots
  • Loading branch information
Joel Griffith authored and simianhacker committed Aug 27, 2019
1 parent d1597ab commit 58337d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion x-pack/legacy/plugins/reporting/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const reporting = (kibana) => {
}).default(),
csv: Joi.object({
checkForFormulas: Joi.boolean().default(true),
enablePanelActionDownload: Joi.boolean().default(false),
enablePanelActionDownload: Joi.boolean().default(true),
maxSizeBytes: Joi.number().integer().default(1024 * 1024 * 10), // bytes in a kB * kB in a mB * 10
scroll: Joi.object({
duration: Joi.string().regex(/^[0-9]+(d|h|m|s|ms|micros|nanos)$/, { name: 'DurationString' }).default('30s'),
Expand Down

0 comments on commit 58337d1

Please sign in to comment.