gantt-task-react-powern 0.4.57 → 0.4.58
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 +6 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +6 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -430,7 +430,12 @@ var TaskListTableDefault = function TaskListTableDefault(_ref) {
|
|
|
430
430
|
className: styles$1.taskListExpanderPlaceholder
|
|
431
431
|
}), React.createElement("div", {
|
|
432
432
|
className: styles$1.taskListText
|
|
433
|
-
}, t.id)))
|
|
433
|
+
}, t.id, " ", t.actualEnd.getTime() > 0 && t.actualEnd.getTime() < Date.now() ? React.createElement("span", {
|
|
434
|
+
style: {
|
|
435
|
+
color: "limegreen",
|
|
436
|
+
fontSize: "16px"
|
|
437
|
+
}
|
|
438
|
+
}, "\u2714") : ""))), React.createElement("div", {
|
|
434
439
|
className: styles$1.taskListCell,
|
|
435
440
|
style: {
|
|
436
441
|
minWidth: parseInt(rowWidth) * 2,
|
|
@@ -2379,7 +2384,6 @@ var TaskGanttContent = function TaskGanttContent(_ref) {
|
|
|
2379
2384
|
var task = _task.start.getTime() > 0 && _task.end.getTime() > 0 ? _task : undefined;
|
|
2380
2385
|
|
|
2381
2386
|
if (!task) {
|
|
2382
|
-
console.debug("return null task");
|
|
2383
2387
|
return React.createElement("g", {
|
|
2384
2388
|
key: _task.id,
|
|
2385
2389
|
style: {
|