When the page gets reloaded for my Dashboard Studio dashboard all of the inputs get reset. I have to enter all the inputs again which is disruptive to my workflow. This is particularlly annoying in two use cases: 1. When I reboot my machine chrome remembers my tabs but it causes the page to reload. So after a reboot I have to enter all the inputs again. 2. When the SSO times out at my company it causes a login page to load, then after auth it navigates back to the dashboard. This is annoying because it can happen any time of the day. Is there a solution for this? Can I encode the input values into the URL for the dashboard so it will automatically load with the correct values even if the page is reloaded? Here is the source for my inputs {
"type": "input.timerange",
"options": {
"token": "global_time",
"defaultValue": "-24h@h,now"
},
"title": "Time Range"
}
{
"options": {
"items": [
{
"label": "All",
"value": "US, CA, GB"
},
{
"label": "US",
"value": "US"
},
{
"label": "CA",
"value": "CA"
},
{
"label": "GB",
"value": "GB"
}
],
"defaultValue": "US, CA, GB",
"token": "selectedRegion"
},
"title": "Region",
"type": "input.dropdown"
}
{
"options": {
"items": [
{
"label": "Unique Companies",
"value": "realms"
},
{
"label": "Percentage of Total Traffic",
"value": "percentage"
}
],
"defaultValue": "realms",
"token": "selectedMode"
},
"title": "Mode",
"type": "input.dropdown"
}
... View more