diff --git a/Diagnostics/ExTRA/ui.html b/Diagnostics/ExTRA/ui.html
index ac302f883c..07d1da00b8 100644
--- a/Diagnostics/ExTRA/ui.html
+++ b/Diagnostics/ExTRA/ui.html
@@ -36,6 +36,10 @@
#scenariosDiv {
column-count: 5;
}
+
+ .btn {
+ margin-top: 15px;
+ }
@@ -51,11 +55,15 @@
-
+
+
+
+
@@ -84,6 +92,18 @@
updateVisibility();
}
+ function clearAllSelections(event) {
+ selectionTable.forEach(category => {
+ category.tags.forEach(tag => {
+ setSelectedOnTag(tag, false, false);
+ });
+
+ checkCategorySelectionState(category);
+ });
+
+ updateVisibility();
+ }
+
async function save() {
const response = await fetch(window.location.href, {
method: 'POST',