Skip to content

Commit

Permalink
Polishing the Final Details for Seamless Release (#1546)
Browse files Browse the repository at this point in the history
* update login page ssh pass label

* fix the style of three widget btn in the control tab

data api
rps
ws

* fix the btn style

data api

* fix the gnosis help url
  • Loading branch information
mabasian committed Nov 7, 2023
1 parent a62416b commit 544315e
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@
errors: keyAuth ? !model.keylocation.isFilled : !model.passphrase.isFilled,
}"
>
<span class="col-start-1 col-span-3 text-sm text-gray-300 font-semibold self-center pl-2"
>SSH-{{ $t("formsetup.password") }}</span
>
<span class="col-start-1 col-span-3 text-sm text-gray-300 font-semibold self-center pl-2">{{
$t("formsetup.KeyPassphrase")
}}</span>
<input
v-model="model.passphrase.value"
class="col-start-4 col-span-8 w-full h-full rounded-l-full px-2"
Expand Down
4 changes: 2 additions & 2 deletions launcher/src/components/UI/node-header/SupportModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default {
computed: {
...mapState(useNodeManage, {
currentNetwork: "currentNetwork",
})
}),
},
mounted() {
if (this.currentNetwork.network === "gnosis") {
Expand All @@ -64,7 +64,7 @@ export default {
openGnoEthDocs() {
let url;
if (this.currentNetwork.network === "gnosis") {
url = "https://docs.gnosischain.com/node/guide/";
url = "https://docs.gnosischain.com/node/manual/";
} else {
url = "https://ethereum.org/en/developers/docs/";
}
Expand Down
4 changes: 2 additions & 2 deletions launcher/src/components/UI/the-control/DataApi.vue
Original file line number Diff line number Diff line change
Expand Up @@ -311,12 +311,12 @@ export default {
.dataApi-data:hover {
background: #707070;
color: #eee;
border: none;
border: 1px solid #707070;
}
.dataApi-data:active {
background: rgba(112, 112, 112, 0.6);
color: #eee;
border: none;
border: 1px solid #707070;
}
/* width */
Expand Down
6 changes: 3 additions & 3 deletions launcher/src/components/UI/the-control/RpcEndpoint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -331,12 +331,12 @@ export default {
.rpc-data:hover {
background: #707070;
color: #eee;
border: none;
border: 1px solid #707070;
}
.rpc-data:active {
background: rgba(112, 112, 112, 0.6);
background: #70707099;
color: #eee;
border: none;
border: 1px solid #70707099;
}
/* width */
Expand Down
4 changes: 2 additions & 2 deletions launcher/src/components/UI/the-control/WsEndpoint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -316,13 +316,13 @@ export default {
.ws-data:hover {
background: #707070;
color: #eee;
border: none;
border: 1px solid #707070;
}
.ws-data:active {
background: rgba(112, 112, 112, 0.6);
color: #eee;
border: none;
border: 1px solid #707070;
}
/* width */
Expand Down
5 changes: 3 additions & 2 deletions launcher/src/languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"password": "PASSWORD",
"keylocation": "KEY LOCATION",
"usessh": "USE SSH KEY",
"fillFields": "Please fill in the missing fields!"
"fillFields": "Please fill in the missing fields!",
"KeyPassphrase": "KEY PASSPHRASE"
},
"comingsoon": {
"comingsoon": "COMING SOON"
Expand Down Expand Up @@ -745,4 +746,4 @@
"trnOff": "Turn Node Off",
"expNode": "Export Node Config"
}
}
}

0 comments on commit 544315e

Please sign in to comment.