gantt-task-react-v 1.6.10 → 1.6.11
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.
|
@@ -13299,12 +13299,13 @@ const TaskItemInner = (props) => {
|
|
|
13299
13299
|
{
|
|
13300
13300
|
x1,
|
|
13301
13301
|
width,
|
|
13302
|
-
taskHeight,
|
|
13302
|
+
taskHeight: task.type === "project" ? taskHalfHeight : taskHeight,
|
|
13303
13303
|
arrowIndent,
|
|
13304
13304
|
rtl,
|
|
13305
13305
|
label: task.name,
|
|
13306
13306
|
taskYOffset,
|
|
13307
|
-
viewMode
|
|
13307
|
+
viewMode,
|
|
13308
|
+
alwaysOutline: task.type === "project"
|
|
13308
13309
|
}
|
|
13309
13310
|
)
|
|
13310
13311
|
]
|
|
@@ -13316,12 +13316,13 @@
|
|
|
13316
13316
|
{
|
|
13317
13317
|
x1,
|
|
13318
13318
|
width,
|
|
13319
|
-
taskHeight,
|
|
13319
|
+
taskHeight: task.type === "project" ? taskHalfHeight : taskHeight,
|
|
13320
13320
|
arrowIndent,
|
|
13321
13321
|
rtl,
|
|
13322
13322
|
label: task.name,
|
|
13323
13323
|
taskYOffset,
|
|
13324
|
-
viewMode
|
|
13324
|
+
viewMode,
|
|
13325
|
+
alwaysOutline: task.type === "project"
|
|
13325
13326
|
}
|
|
13326
13327
|
)
|
|
13327
13328
|
]
|
package/package.json
CHANGED