diff --git a/app/components/modules/TopRightMenu.jsx b/app/components/modules/TopRightMenu.jsx index d584a9888..dcb8b20d1 100644 --- a/app/components/modules/TopRightMenu.jsx +++ b/app/components/modules/TopRightMenu.jsx @@ -137,7 +137,7 @@ function TopRightMenu({account, savings_withdraws, price_per_golos, globalprops, } additional_menu.push( { link: '/market', icon: 'voters', value: tt('userwallet_jsx.market') }, - { link: '/~witnesses', icon: 'new/like', value: tt("navigation.witnesses") }, + { link: '/~witnesses', icon: 'new/like', value: tt("navigation.witnesses"), target: 'blank' }, { link: '/workers', icon: 'editor/plus', value: tt("navigation.workers") }, { link: 'https://explorer.golos.id/', icon: 'new/search', value: tt("navigation.explorer"), target: 'blank' }, { link: '/exchanges', icon: 'editor/coin', value: tt("navigation.buy_sell") }, diff --git a/app/utils/SanitizeConfig.js b/app/utils/SanitizeConfig.js index 5ad004e85..91e202e40 100644 --- a/app/utils/SanitizeConfig.js +++ b/app/utils/SanitizeConfig.js @@ -293,7 +293,7 @@ export default ({ const attrs = { href }; // If it's not a (relative or absolute) golos URL... - if (!href.match(/^(\/(?!\/)|https:\/\/(golos.id|golos.club))/)) { + if (!href.match(/^(\/(?!\/)|https:\/\/(golos.id|golos.in|golos.today))/)) { attrs.rel = highQualityPost ? 'noopener' : 'nofollow noopener'; }