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.
@@ -3039,6 +3039,7 @@ var Gantt = function Gantt(_ref) {
3039
3039
  var alert = document.getElementById("alert-container");
3040
3040
 
3041
3041
  if (checkbox.checked) {
3042
+ localStorage.setItem('hideCircularDepsAlert', 'true');
3042
3043
  alert.style.display = "None";
3043
3044
  }
3044
3045
  };
@@ -3191,7 +3192,7 @@ var Gantt = function Gantt(_ref) {
3191
3192
  taskLabelRenderer: taskLabelRenderer,
3192
3193
  onMultiSelect: onMultiSelect
3193
3194
  };
3194
- return React.createElement("div", null, hasCircularDeps && React.createElement("div", {
3195
+ return React.createElement("div", null, hasCircularDeps && localStorage.getItem('hideCircularDepsAlert') !== 'true' && React.createElement("div", {
3195
3196
  id: "alert-container",
3196
3197
  className: styles$9.alertContainer + " " + styles$9.warning
3197
3198
  }, React.createElement("input", {