From 74eb942b98e68281e6ad8df99cf3d8c93c8d25f5 Mon Sep 17 00:00:00 2001 From: Tim de Groot Date: Mon, 30 Mar 2026 00:53:53 +0200 Subject: [PATCH] fix: update profile check for run tags and remove unused useOrTags reference --- robotframework_dashboard/js/filter.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/robotframework_dashboard/js/filter.js b/robotframework_dashboard/js/filter.js index b120cb8..527aa9d 100644 --- a/robotframework_dashboard/js/filter.js +++ b/robotframework_dashboard/js/filter.js @@ -913,7 +913,7 @@ function build_profile_from_checks() { const profile = {}; const checkMap = { profileCheckRuns: 'runs', - profileCheckRunTags: ['runTags', 'useOrTags'], + profileCheckRunTags: 'runTags', profileCheckVersions: 'projectVersions', profileCheckFromDate: 'fromDate', profileCheckFromTime: 'fromTime', @@ -1028,10 +1028,6 @@ function apply_filter_profile(profile, name) { }); update_filter_active_indicator("runTagCheckBoxAll", "filterRunTagSelectedIndicator"); } - if (profile.useOrTags !== undefined) { - const orEl = document.getElementById("useOrTags"); - if (orEl) orEl.checked = profile.useOrTags; - } if (profile.projectVersions !== undefined) { const versionInputs = document.getElementById("projectVersionList").querySelectorAll("input.form-check-input"); const versionMap = {};