Forum Discussion
francoisvv
08-30-2022Cloud Apps
You can try the following code by adding it as a custom script to your dashboard by clicking on the 3 dots on your dashboard, selecting EDIT SCIPT and adding the following code there. Once added, just save and then refresh your dashboard.
dashboard.on('initialized', () => {
dashboard.filters.clear();
dashboard.filters.update([], {refresh:true, save:true});
console.log('filters deleted!');
});