Skip to content

Commit

Permalink
FIX: Last issues before release (#1381)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoPlays authored Aug 2, 2023
1 parent 8b9cb35 commit 34b209f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion launcher/src/components/UI/the-control/TheStaking.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default {
this.selectedCurrency = "/img/icon/control/sepETH_Currency_Symbol.png";
break;
case 4:
this.selectedCurrency = "/img/icon/control/GNO_Currency_Symbol.png";
this.selectedCurrency = "/img/icon/control/gno_currency_symbol.png";
break;
default:
break;
Expand Down
13 changes: 5 additions & 8 deletions launcher/src/components/UI/the-staking/DisplayValidators.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<span id="balance">{{ $t("displayValidator.balance") }}</span>
<span id="option">{{ $t("displayValidator.option") }}</span>
</div>
<key-modal v-if="riskWarning" @hide-modal="hideWDialog">
<KeyModal v-if="riskWarning" @hide-modal="hideWDialog">
<div class="warning-container">
<div class="icon-part">
<img src="/img/icon/the-staking/stereum-error.png" alt="warning" />
Expand All @@ -35,8 +35,8 @@
</div>
</div>
</div>
</key-modal>
<key-modal v-if="bDialogVisible" @hide-modal="hideBDialog">
</KeyModal>
<KeyModal v-if="bDialogVisible" @hide-modal="hideBDialog">
<div :class="{ 'bg-blue': exitInfo }" class="title-box">
<span>{{
importIsProcessing === true || importIsDone === true ? $t("displayValidator.importKey") : ""
Expand Down Expand Up @@ -80,7 +80,7 @@
<span>Close</span>
</div>
</div>
</key-modal>
</KeyModal>
<ImportSlashingModal
v-if="ImportSlashingActive"
@remove-modal="removeImportSlashingHandler"
Expand Down Expand Up @@ -172,10 +172,7 @@
@mouseleave="cursorLocation = ''"
/>
</div>
<div
class="withdraw-box"
:class="{ disabled: ['goerli', 'mainnet', 'sepolia'].indexOf(currentNetwork.network) === -1 }"
>
<div class="withdraw-box">
<img
class="exit-icon"
src="/img/icon/the-staking/withdraw.png"
Expand Down
2 changes: 1 addition & 1 deletion launcher/src/components/UI/the-staking/StateDropdown.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="dropDown_parent">
<div class="dropDown_box">
<div class="dropDown" :class="{ disabled: currentNetwork.network === 'gnosis' }" @click="toggleDropDown">
<div class="dropDown" @click="toggleDropDown">
<div v-if="!selectedValidator.key" class="options">Choose a validator</div>
<div v-else class="options">
{{ selectedValidator.key }}
Expand Down

0 comments on commit 34b209f

Please sign in to comment.