We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90af3ff commit 46b1346Copy full SHA for 46b1346
src/dashboard/Data/Browser/ExportSelectedRowsDialog.react.js
@@ -35,7 +35,7 @@ export default class ExportSelectedRowsDialog extends React.Component {
35
type={Modal.Types.INFO}
36
icon='warn-outline'
37
title={this.props.selection['*'] ? 'Export all rows?' : (selectionLength === 1 ? 'Export 1 selected row?' : `Export ${selectionLength} selected rows?`)}
38
- subtitle={this.props.selection['*'] ? 'Note: This will export mutliple files with maximum 1gb each. This might take a while.' : ''}
+ subtitle={this.props.selection['*'] ? 'Large datasets are exported as multiple files of up to 1 GB each.' : ''}
39
disabled={!this.valid()}
40
confirmText='Export'
41
cancelText='Cancel'
0 commit comments