Skip to content

Commit

Permalink
change on info section
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioLangaritaBenitez committed Apr 18, 2024
1 parent 563da80 commit f99d04d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/Info.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
</v-card-text>
-->
<v-card-text class="xs6"> <strong>useSSL: </strong>
<p style="display:inline" v-show="use(useSSL)" >Yes</p>
<p style="display:inline" v-show="!use(useSSL)" >No</p>
<p style="display:inline" v-if="use(useSSL)" >Yes</p>
<p style="display:inline" v-if="!use(useSSL)" >No</p>
</v-card-text>
<v-card-text class="xs6"> <strong>GPU Available: </strong>
<p style="display:inline" v-show="gpu_available =='true'" >Yes</p>
Expand Down Expand Up @@ -200,7 +200,7 @@ export default {
gpu_available:localStorage["gpu_available"],
password:localStorage["password"],
port:localStorage["port"],
useSSL:localStorage["useSSL"],
useSSL:localStorage.getItem("useSSL"),
yunikorn_enable:localStorage["yunikorn_enable"],
secretKey:localStorage["secretKey"],
interLink_available:localStorage["interLink_available"],
Expand Down

0 comments on commit f99d04d

Please sign in to comment.