Skip to content

Commit

Permalink
Fix navigator layers that have minValue==maxValue (fixes #4)
Browse files Browse the repository at this point in the history
As noted by @IanDavila, this violates the navigator layer specification.
We have several layers where min==1 and max==1. I updated all of those
to have min==0 and max==1.
  • Loading branch information
mehaase committed Mar 13, 2024
1 parent f8c08c0 commit b141be7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/extra/extradocs/insider-threat-ttp.json
Original file line number Diff line number Diff line change
Expand Up @@ -3342,7 +3342,7 @@
"#31a354ff",
"#31a354ff"
],
"minValue": 1,
"minValue": 0,
"maxValue": 1
},
"legendItems": [
Expand All @@ -3358,4 +3358,4 @@
"selectTechniquesAcrossTactics": false,
"selectSubtechniquesWithParent": false,
"selectVisibleTechniques": false
}
}
4 changes: 2 additions & 2 deletions docs/extra/green_seen_v1_v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -8172,7 +8172,7 @@
"#31a354ff",
"#31a354ff"
],
"minValue": 1,
"minValue": 0,
"maxValue": 1
},
"legendItems": [
Expand All @@ -8188,4 +8188,4 @@
"selectTechniquesAcrossTactics": false,
"selectSubtechniquesWithParent": false,
"selectVisibleTechniques": false
}
}
4 changes: 2 additions & 2 deletions docs/extra/insider_threat_matrix_combined.json
Original file line number Diff line number Diff line change
Expand Up @@ -7405,7 +7405,7 @@
"#31a354ff",
"#31a354ff"
],
"minValue": 1,
"minValue": 0,
"maxValue": 1
},
"legendItems": [
Expand All @@ -7420,4 +7420,4 @@
"tacticRowBackground": "#dddddd",
"selectTechniquesAcrossTactics": false,
"selectSubtechniquesWithParent": false
}
}
4 changes: 2 additions & 2 deletions docs/extra/insider_threat_matrix_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -3082,7 +3082,7 @@
"#31a354ff",
"#31a354ff"
],
"minValue": 1,
"minValue": 0,
"maxValue": 1
},
"legendItems": [
Expand All @@ -3098,4 +3098,4 @@
"selectTechniquesAcrossTactics": false,
"selectSubtechniquesWithParent": false,
"selectVisibleTechniques": false
}
}
4 changes: 2 additions & 2 deletions docs/extra/navigatorlayers/insider-threat-ttp.json
Original file line number Diff line number Diff line change
Expand Up @@ -3342,7 +3342,7 @@
"#31a354ff",
"#31a354ff"
],
"minValue": 1,
"minValue": 0,
"maxValue": 1
},
"legendItems": [
Expand All @@ -3358,4 +3358,4 @@
"selectTechniquesAcrossTactics": false,
"selectSubtechniquesWithParent": false,
"selectVisibleTechniques": false
}
}

0 comments on commit b141be7

Please sign in to comment.