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 f6d6094 commit 5982a1cCopy full SHA for 5982a1c
qiita_pet/static/js/networkVue.js
@@ -1011,6 +1011,7 @@ Vue.component('processing-graph', {
1011
1012
// At this point we can show the graph and hide the job list
1013
$("#processing-network-div").show();
1014
+ $("#show-hide-network-btn").show();
1015
$("#processing-job-div").hide();
1016
}
1017
})
@@ -1035,6 +1036,7 @@ Vue.component('processing-graph', {
1035
1036
$.get(vm.portal + vm.jobsEndpoint, function(data) {
1037
$("#processing-job-div").html("");
1038
$("#processing-job-div").append("<p>Hang tight, we are processing your request: </p>");
1039
+ $("#show-hide-network-btn").hide();
1040
var nonCompletedJobs = 0;
1041
var successJobs = 0;
1042
var totalJobs = 0;
0 commit comments