easy3wui 1.5.77-beta.1 → 1.5.77
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.
- package/lib/Easy3wGridPage/index.js +4 -10
- package/package.json +1 -1
|
@@ -152,16 +152,10 @@ var Easy3wGridPage = function (_Component) {
|
|
|
152
152
|
var recursion = function recursion(arr) {
|
|
153
153
|
arr.forEach(function (item) {
|
|
154
154
|
var columnsType = item.type;
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
_tooltip2['default'],
|
|
160
|
-
{ placement: 'topLeft', title: title },
|
|
161
|
-
title.substring(0, 6),
|
|
162
|
-
'...'
|
|
163
|
-
);
|
|
164
|
-
}
|
|
155
|
+
// const { title } = item;
|
|
156
|
+
// if (!(printFlag || hasFormParentClass) && title && typeof title === 'string' && title.length > 6) {
|
|
157
|
+
// item.title = <Tooltip placement="topLeft" title={title}>{title.substring(0, 6)}...</Tooltip>;
|
|
158
|
+
// }
|
|
165
159
|
switch (columnsType) {
|
|
166
160
|
case 'shortText':
|
|
167
161
|
item.className = 'e3wGridShortText';break;
|