@visns-studio/visns-components 1.7.2 → 1.7.3

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.
@@ -510,7 +510,9 @@ const DataGrid = forwardRef(
510
510
  if (s.active) {
511
511
  if (
512
512
  d.hasOwnProperty(s.active.id) &&
513
- d[s.active.id] === s.active.value
513
+ d[s.active.id] === s.active.value &&
514
+ s.active.type !== "greater" &&
515
+ s.active.type !== "not null"
514
516
  ) {
515
517
  iconStyle = {
516
518
  color: s.active.colour,
@@ -529,6 +531,10 @@ const DataGrid = forwardRef(
529
531
  iconStyle = {
530
532
  color: s.active.colour,
531
533
  };
534
+ } else {
535
+ iconStyle = {
536
+ color: "",
537
+ };
532
538
  }
533
539
  }
534
540
 
package/package.json CHANGED
@@ -34,7 +34,7 @@
34
34
  "react-dom": "^17.0.1"
35
35
  },
36
36
  "name": "@visns-studio/visns-components",
37
- "version": "1.7.2",
37
+ "version": "1.7.3",
38
38
  "description": "Various packages to assist in the development of our Custom Applications.",
39
39
  "main": "index.js",
40
40
  "devDependencies": {},