File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
dash-core-components/src/components
dash-table/src/dash-table/dash Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ export default class Tabs extends Component {
159
159
parseChildrenToArray ( ) {
160
160
if ( this . props . children && ! is ( Array , this . props . children ) ) {
161
161
// if dcc.Tabs.children contains just one single element, it gets passed as an object
162
- // instead of an array - so we put in in a array ourselves!
162
+ // instead of an array - so we put it in an array ourselves!
163
163
return [ this . props . children ] ;
164
164
}
165
165
return this . props . children ;
Original file line number Diff line number Diff line change @@ -700,7 +700,7 @@ export const propTypes = {
700
700
/**
701
701
* Denotes the format of the headers in the export data file.
702
702
* If `'none'`, there will be no header. If `'display'`, then the header
703
- * of the data file will be be how it is currently displayed. Note that
703
+ * of the data file will be how it is currently displayed. Note that
704
704
* `'display'` is only supported for `'xlsx'` export_format and will behave
705
705
* like `'names'` for `'csv'` export format. If `'ids'` or `'names'`,
706
706
* then the headers of data file will be the column id or the column
@@ -802,7 +802,7 @@ export const propTypes = {
802
802
* If `'native'`, then the sorting UI is displayed and the sorting
803
803
* logic is handled by the table. That is, it is performed on the data
804
804
* that exists in the `data` property.
805
- * If `'custom'`, the the sorting UI is displayed but it is the
805
+ * If `'custom'`, the sorting UI is displayed but it is the
806
806
* responsibility of the developer to program the sorting
807
807
* through a callback (where `sort_by` would be the input and `data`
808
808
* would be the output).
You can’t perform that action at this time.
0 commit comments