gantt-task-react-powern 0.4.11 → 0.4.12
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/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5 -3
- package/dist/index.modern.js.map +1 -1
- package/dist/types/public-types.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -389,12 +389,14 @@ var TaskListTableDefault = function TaskListTableDefault(_ref) {
|
|
|
389
389
|
}, React__default.createElement("div", {
|
|
390
390
|
className: styles$1.taskListCell,
|
|
391
391
|
style: {
|
|
392
|
-
minWidth: parseInt(rowWidth) / 2
|
|
393
|
-
maxWidth: parseInt(rowWidth) / 2
|
|
392
|
+
minWidth: parseInt(rowWidth) / 2
|
|
394
393
|
},
|
|
395
394
|
title: t.id
|
|
396
395
|
}, React__default.createElement("div", {
|
|
397
|
-
className: styles$1.taskListNameWrapper
|
|
396
|
+
className: styles$1.taskListNameWrapper,
|
|
397
|
+
style: {
|
|
398
|
+
paddingLeft: t.depth * 4 + "px"
|
|
399
|
+
}
|
|
398
400
|
}, React__default.createElement("div", {
|
|
399
401
|
className: styles$1.taskListExpander,
|
|
400
402
|
onClick: function onClick() {
|