We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b536c7e commit f4e8a16Copy full SHA for f4e8a16
services/static-webserver/client/source/class/osparc/dashboard/CardBase.js
@@ -695,8 +695,9 @@ qx.Class.define("osparc.dashboard.CardBase", {
695
// Block card
696
this.setBlocked("UNKNOWN_SERVICES");
697
const image = "@FontAwesome5Solid/ban/";
698
+ let toolTipText = this.tr("Unknown service(s)");
699
if (cantReadServices && cantReadServices.length) {
- let toolTipText = this.tr("Inaccessible service(s):");
700
+ toolTipText = this.tr("Inaccessible service(s)");
701
cantReadServices.forEach(unSrv => {
702
toolTipText += "<br>" + unSrv.key + ":" + osparc.service.Utils.extractVersionDisplay(unSrv.release);
703
});
0 commit comments