Skip to content

Commit

Permalink
Revert "working on M19 and M20"
Browse files Browse the repository at this point in the history
This reverts commit f65763e.
  • Loading branch information
srisco committed Mar 23, 2022
1 parent de15ce1 commit 47050ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
11 changes: 5 additions & 6 deletions ui/src/components/forms/FunctionForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@
<v-btn @click="cleanfieldInput();cleanfieldOutput()" flat color="red">Clear</v-btn>
<v-spacer></v-spacer>
<v-btn @click="show('profile')" flat color="blue">BACK</v-btn>
<v-btn :disabled="!form.valid || progress.active ==true" @click="submit" flat color="success">submit</v-btn>
<v-btn :disabled="!form.valid" @click="submit" flat color="success">submit</v-btn>
<!-- <v-btn @click="show('input_output')" flat color="success">NEXT</v-btn> -->

</v-card-actions>
Expand Down Expand Up @@ -1687,8 +1687,8 @@ export default {
this.limits_mem = this.form.limits_memory + value;
}
this.progress.active = true
var params = {
'name': this.form.name,
'image': this.form.image,
'cpu': this.form.limits_cpu,
Expand Down Expand Up @@ -1743,7 +1743,6 @@ export default {
}else{
script = this.script
}
this.progress.active = true
var params = {
'name': this.form.name,
Expand Down Expand Up @@ -1827,9 +1826,9 @@ export default {
}else{
this.showselectEnv = true
}
this.select_logLevel = data.log_Level
console.log(data.log_Level)
console.log(this.select_logLevel)
setTimeout(function(){
this.select_logLevel = data.log_Level
},100)
if (this.isEmpty(this.inputs)) {
this.showselectInput = false
}else{
Expand Down
5 changes: 1 addition & 4 deletions ui/src/views/Functions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,9 @@
readonly
></v-text-field>
</v-card-text>
<v-card-text v-show="Object.keys(props.item.envVars.Variables).length!==0" class="custom-padding"><strong>Environment variables: </strong>
<v-card-text class="custom-padding"><strong>Environment variables: </strong>
<pre v-show="Object.keys(props.item.envVars.Variables).length!==0" id="json-renderer"></pre>
</v-card-text>
<v-card-text v-show="props.item.log_level!==''" class="custom-padding"><strong>Log Level: </strong>
{{props.item.log_level}}
</v-card-text>

<v-card-actions>
<span class="custom-padding" style="padding:10px;"><strong>Inputs:</strong></span>
Expand Down

0 comments on commit 47050ef

Please sign in to comment.