File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed
components/UI/staking-page/components/list/rows Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ import { computed } from 'vue';
7373 <div class =" h-full col-start-17 col-span-full bg-[#151618] rounded-full grid grid-cols-6 items-center" @mousedown.prevent >
7474 <div
7575 class =" col-start-1 col-span-1 w-full h-full rounded-md justify-self-center flex justify-center items-center"
76- @mouseenter =" footerStore.cursorLocation = `Beaconcha.in `"
76+ @mouseenter =" footerStore.cursorLocation = `Beacon explorer `"
7777 @mouseleave =" footerStore.cursorLocation = ''"
7878 >
7979 <img
@@ -303,10 +303,8 @@ const displayText = computed(() => {
303303// Methods
304304const navToBeaconcha = (network ) => {
305305 const urls = {
306- gnosis: " https://gnosischa.in/" ,
307- sepolia: " https://sepolia.beaconcha.in/" ,
308- mainnet: " https://beaconcha.in/" ,
309- holesky: " https://holesky.beaconcha.in/" ,
306+ mainnet: " https://beacon.stratisevm.com/" ,
307+ auroria: " https://auroria.beacon.stratisevm.com/" ,
310308 };
311309
312310 const url = urls[network] + " validator/" + props .item .key ;
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export const useMultiSetups = () => {
6464 } ;
6565 } ) ,
6666
67- isActive : false ,
67+ isActive : setupStore . editSetups . find ( ( { setupId } ) => setupId === config . configId ) ?. isActive || false ,
6868 } ) ) ;
6969
7070 return setups ;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export async function useListKeys(forceRefresh) {
2020 //refresh validaotr list
2121 let result = await ControlService . listValidators ( client . config . serviceID ) ;
2222
23- if ( ! client . service . includes ( "Web3Signer" ) ) {
23+ if ( ! client . service . includes ( "Web3Signer" ) && client . yaml ?. includes ( 'external-signer' ) ) {
2424 let resultRemote = await ControlService . listRemoteKeys ( client . config . serviceID ) ;
2525 let remoteKeys = resultRemote . data
2626 ? resultRemote . data . map ( ( e ) => {
You can’t perform that action at this time.
0 commit comments