improve further select_experiments: add time range in link

This commit is contained in:
2025-05-21 15:37:19 +02:00
parent e136b66732
commit b24384f387
2 changed files with 29 additions and 15 deletions

View File

@ -78,15 +78,16 @@ new Settings()
.treat("lazyPermission", "wr", to_bool, true);
let args = '';
if (window.instrument) {
window.clientTags = "&instrument=" + window.instrument;
args += "&instrument=" + window.instrument;
} else {
let args = '';
if (window.stream) { args += "&stream=" + window.stream; }
if (window.device) { args += "&device=" + window.device; }
if (window.hideRightPart) { args += "&history_only=1"; }
window.clientTags = args;
}
if (window.hideRightPart) { args += "&history_only=1"; }
window.clientTags = args;
// console.log('TAGS', window.clientTags);