gantt-task-react-powern 0.4.82 → 0.4.83
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 +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3040,6 +3040,7 @@ var Gantt = function Gantt(_ref) {
|
|
|
3040
3040
|
var alert = document.getElementById("alert-container");
|
|
3041
3041
|
|
|
3042
3042
|
if (checkbox.checked) {
|
|
3043
|
+
localStorage.setItem('hideCircularDepsAlert', 'true');
|
|
3043
3044
|
alert.style.display = "None";
|
|
3044
3045
|
}
|
|
3045
3046
|
};
|
|
@@ -3192,7 +3193,7 @@ var Gantt = function Gantt(_ref) {
|
|
|
3192
3193
|
taskLabelRenderer: taskLabelRenderer,
|
|
3193
3194
|
onMultiSelect: onMultiSelect
|
|
3194
3195
|
};
|
|
3195
|
-
return React__default.createElement("div", null, hasCircularDeps && React__default.createElement("div", {
|
|
3196
|
+
return React__default.createElement("div", null, hasCircularDeps && localStorage.getItem('hideCircularDepsAlert') !== 'true' && React__default.createElement("div", {
|
|
3196
3197
|
id: "alert-container",
|
|
3197
3198
|
className: styles$9.alertContainer + " " + styles$9.warning
|
|
3198
3199
|
}, React__default.createElement("input", {
|