Skip to content

Commit e6be746

Browse files
Remove 'Teacher' from title and remove logs
1 parent 2c979e3 commit e6be746

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

viplab-standalone-frontend-vue/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VUE_APP_FILENAME = hello-world.docker-container-example
1+
VUE_APP_FILENAME = workshop-snakemake-example.computation-template
22
#workshop-snakemake-example.computation-template
33
#workshop-snakemake-example.computation-template
44
#leap-year.computation-template

viplab-standalone-frontend-vue/src/pages/teacher/App.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
<div class="teacher-header p-2">
1111
<div class="teacher-header-section">
12-
<h2>Teacher</h2>
1312
<h3>
1413
This site will help you create a Computation Template
1514
<a class="ct-docu-link" href="https://virtualprogramminglab.github.io/documentation/viplab-3.0/computation_template/" title="Go to Documentation for more Info" alt="Documentation" target="_blank"><b-icon-book>Go to Documentation for more Info</b-icon-book></a>

viplab-standalone-frontend-vue/src/pages/viplab/App.vue

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -689,11 +689,9 @@ export default {
689689
let token = appDiv.getAttribute("data-token");
690690
691691
if (data && data !== "{{ data }}" && data !== "" && Object.keys(this.$store.state.jsonTemplate).length === 0) {
692-
console.log("1")
693692
this.json = JSON.parse(base64url.decode(data));
694693
this.$store.commit("updateDataTemplate", data);
695694
} else if (Object.keys(this.$store.state.jsonTemplate).length > 0) {
696-
console.log("2")
697695
if (data && (data === "{{ data }}" || data === "") || this.modifiedByTeacher) {
698696
this.json = this.$store.state.jsonTemplate;
699697
this.dataTemplate = this.$store.state.dataTemplate;
@@ -703,7 +701,6 @@ export default {
703701
this.$store.commit("updateDataTemplate", data);
704702
}
705703
} else {
706-
console.log("3")
707704
this.json = {};
708705
this.dataTemplate = "";
709706
}
@@ -1032,10 +1029,6 @@ export default {
10321029
}
10331030
}
10341031
}
1035-
1036-
console.log("--- oc ---")
1037-
console.log(outputConfig)
1038-
console.log("---")
10391032
10401033
if (outputConfig.length > 0) {
10411034
let basenames = [];
@@ -1045,7 +1038,6 @@ export default {
10451038
if (!basenames.includes(currentBasename)) {
10461039
basenames.push(currentBasename);
10471040
}
1048-
console.log(currentBasename)
10491041
10501042
if(!connectedVtks[currentBasename]) {
10511043
connectedVtks[currentBasename] = {};
@@ -1063,7 +1055,7 @@ export default {
10631055
let path = artifacts[a].path;
10641056
let lastIndex = path.lastIndexOf('/');
10651057
let filenamePart = path.substr(lastIndex + 1, path.length);
1066-
console.log(filenamePart)
1058+
10671059
for (var base = 0; base < basenames.length; base++) {
10681060
let currentBasename = basenames[base];
10691061
// filename has to start with basename
@@ -1152,7 +1144,6 @@ export default {
11521144
}
11531145
})
11541146
.catch((error) => {
1155-
console.log("catch")
11561147
this.promiseError.set(url, error);
11571148
11581149
})

0 commit comments

Comments
 (0)