@seafile/sdoc-editor 1.0.18 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,6 +2,7 @@ import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
|
2
2
|
import React, { Component } from 'react';
|
|
3
3
|
import classnames from 'classnames';
|
|
4
4
|
import { CellType, FILTER_COLUMN_OPTIONS, FORMULA_COLUMN_TYPES_MAP, FORMULA_RESULT_TYPE, ValidateFilter } from 'dtable-utils';
|
|
5
|
+
import { withTranslation } from 'react-i18next';
|
|
5
6
|
import { getColumnByKey } from '../../utils/utils';
|
|
6
7
|
import FilterItemUtils from './filter-item-utils';
|
|
7
8
|
import FilterItem from './filter-item';
|
|
@@ -118,4 +119,4 @@ class FiltersList extends Component {
|
|
|
118
119
|
}));
|
|
119
120
|
}
|
|
120
121
|
}
|
|
121
|
-
export default FiltersList;
|
|
122
|
+
export default withTranslation('sdoc-editor')(FiltersList);
|