@datagrok/hit-triage 1.7.3 → 1.7.5

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/.eslintrc.json CHANGED
@@ -17,7 +17,6 @@
17
17
  "rules": {
18
18
  "no-unused-vars": "off",
19
19
  "@typescript-eslint/no-unused-vars": ["warn", { "varsIgnorePattern": "^(_|ui$|grok$|DG$)", "argsIgnorePattern": "^_"}],
20
- "@typescript-eslint/require-array-sort-compare": "error",
21
20
  "indent": [
22
21
  "error",
23
22
  2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # HitTriage changelog
2
2
 
3
+ ## 1.7.5 (2025-09-03)
4
+
5
+ * Add Ability to hide or show custom columns in campaigns table.
6
+ * Improved styling of icons in the info view.
7
+
3
8
  ## 1.7.3 (2025-05-01)
4
9
 
5
10
  * Fix descriptors tree not scrolling
@@ -68,6 +68,7 @@ table.hit-triage-table {
68
68
  max-height: 550px;
69
69
  max-width: 800px;
70
70
  min-width: 550px;
71
+ overflow: clip;
71
72
  }
72
73
 
73
74
  .hit-triage-compute-dialog-descriptors-group {
@@ -98,3 +99,7 @@ table.hit-triage-table {
98
99
  overflow: hidden;
99
100
  text-overflow: ellipsis;
100
101
  }
102
+
103
+ .hit-triage-info-view-container .fa-trash-alt:hover {
104
+ color: #ff0000 !important;
105
+ }