remove logging, remove forced change to node scope

This commit is contained in:
Christoph Kluge 2024-09-03 13:10:44 +02:00
parent 275a77807e
commit 4b1b34d8a7
2 changed files with 3 additions and 10 deletions

View File

@ -399,7 +399,7 @@
init: [
(u) => {
u.over.addEventListener("dblclick", (e) => {
console.log('Dispatch Reset')
// console.log('Dispatch Reset')
dispatch('zoom', {
lastZoomState: {
x: { time: false },
@ -455,7 +455,7 @@
if (key === 'x') {
const numX = (u.series[0].idxs[1] - u.series[0].idxs[0])
if (numX <= 20 && timestep !== 60) { // Zoom IN if not at MAX
console.log('Dispatch Zoom')
// console.log('Dispatch Zoom')
if (timestep == 600) {
dispatch('zoom', {
newRes: 240,
@ -468,7 +468,7 @@
});
}
} else {
console.log('Dispatch Update')
// console.log('Dispatch Update')
dispatch('zoom', {
lastZoomState: u?.scales
});

View File

@ -117,13 +117,6 @@
selectedScopes = [...scopes, "socket", "core", "accelerator"]
}
if ((selectedResolution !== pendingResolution) && selectedScopes.length >= 2) {
selectedScope = String("node")
selectedScopes = ["node"]
// Instead of adding acc to load-all: always add by default if native is acc
// selectedScopes = nativeScope == "accelerator" ? ["node", "accelerator"] : ["node"]
}
selectedResolution = Number(pendingResolution)
metricData = queryStore({