Version 

<style> 
.version {
	height: 25px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
</style>
<select class="version" id="version" onchange="showContent()">
	<option value="6.0.1">6.0.1</option>
    <option value="6.0.0">6.0.0</option>
</select>
<script> 
function showContent() {
	var dropdown = document.getElementById("version"); 
	var tabs = document.getElementsByClassName("rwui_tab_content");
	for (var i = 0; i < tabs.length; i++) {
		if (tabs[i].getAttribute("data-name") == dropdown.value) {
			tabs[i].style.display = "";
		}
		else {
			tabs[i].style.display = "none";
		}
	}
}
</script>

(info) NOTEDashboard 6.0.1 does not require the 6.0.0 version in your ServiceNow instance, only the latest Helium version of the Perspectium Core Helium update set.


Release Date: May 25, 2021

Bug Fixes

Removed unused view icon for Dashboard properties.


Fixed issue casing an error message to display on the Dashboard main page when a valid MBS 4.6.12 version is connected but no Agent results were found for a vhost user.


The numbers in the "Total monthly records" field will no longer overflow and can be viewed properly.  





Release Date: March 25, 2021

New Features

A visual representation of operational details of your ServiceNow instances and bulk/dynamic shares, as well as open tickets with Perspectium Support, is now available through Dashboard.





<script> 
	var tabs = document.getElementsByClassName("rwui_tab_content");
	for (var i = 0; i < tabs.length; i++) {
		if (tabs[i].getAttribute("data-name") == "6.0.1") {
			tabs[i].style.display = "";
		}
		else {
			tabs[i].style.display = "none";
		}
	}
</script>