Loading vospace-ui-backend/src/main/java/it/inaf/ia2/vospace/ui/service/NodesHtmlGenerator.java +2 −5 Original line number Diff line number Diff line Loading @@ -146,11 +146,8 @@ public class NodesHtmlGenerator { private void addNodeIcon(NodeInfo nodeInfo, Element cell) { Element iconContainer = cell; if (nodeInfo.isBusy()) { Element loadingWrapper = cell.appendElement("span"); iconContainer = loadingWrapper; loadingWrapper.addClass("node-busy"); Element spinner = loadingWrapper.appendElement("span"); spinner.attr("role", "status"); Loading @@ -177,7 +174,7 @@ public class NodesHtmlGenerator { } } iconContainer.append(" "); cell.append(" "); } private void addLink(NodeInfo nodeInfo, Element cell) { Loading @@ -193,7 +190,7 @@ public class NodesHtmlGenerator { link.attr("href", href); link.text(nodeInfo.getName()); } else { cell.text(nodeInfo.getName()); cell.appendText(nodeInfo.getName()); } } Loading vospace-ui-frontend/src/App.vue +4 −1 Original line number Diff line number Diff line Loading @@ -83,7 +83,6 @@ export default { .node-busy { position: relative; padding-right: 3px; } .node-busy .spinner-border { Loading @@ -95,4 +94,8 @@ export default { top: -7px; color: #3293f2; } .node-busy + .icon { margin-right: 3px; } </style> Loading
vospace-ui-backend/src/main/java/it/inaf/ia2/vospace/ui/service/NodesHtmlGenerator.java +2 −5 Original line number Diff line number Diff line Loading @@ -146,11 +146,8 @@ public class NodesHtmlGenerator { private void addNodeIcon(NodeInfo nodeInfo, Element cell) { Element iconContainer = cell; if (nodeInfo.isBusy()) { Element loadingWrapper = cell.appendElement("span"); iconContainer = loadingWrapper; loadingWrapper.addClass("node-busy"); Element spinner = loadingWrapper.appendElement("span"); spinner.attr("role", "status"); Loading @@ -177,7 +174,7 @@ public class NodesHtmlGenerator { } } iconContainer.append(" "); cell.append(" "); } private void addLink(NodeInfo nodeInfo, Element cell) { Loading @@ -193,7 +190,7 @@ public class NodesHtmlGenerator { link.attr("href", href); link.text(nodeInfo.getName()); } else { cell.text(nodeInfo.getName()); cell.appendText(nodeInfo.getName()); } } Loading
vospace-ui-frontend/src/App.vue +4 −1 Original line number Diff line number Diff line Loading @@ -83,7 +83,6 @@ export default { .node-busy { position: relative; padding-right: 3px; } .node-busy .spinner-border { Loading @@ -95,4 +94,8 @@ export default { top: -7px; color: #3293f2; } .node-busy + .icon { margin-right: 3px; } </style>