Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions robotframework_dashboard/js/filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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 = {};
Expand Down
Loading