Browse Source

fix: rel for links

pull/7633/head
mertmit 8 months ago
parent
commit
4122b27968
  1. 8
      packages/nc-gui/components/dashboard/Sidebar/UserInfo.vue
  2. 2
      packages/nc-gui/components/general/JoinCloud.vue
  3. 2
      packages/nc-gui/components/general/ReleaseInfo.vue
  4. 6
      packages/nc-gui/components/general/SocialCard.vue

8
packages/nc-gui/components/dashboard/Sidebar/UserInfo.vue

@ -134,7 +134,13 @@ onMounted(() => {
<span class="menu-btn"> {{ $t('labels.community.joinReddit') }} </span>
</NcMenuItem>
</a>
<a v-e="['c:nocodb:twitter']" href="https://twitter.com/nocodb" target="_blank" class="!underline-transparent">
<a
v-e="['c:nocodb:twitter']"
href="https://twitter.com/nocodb"
target="_blank"
class="!underline-transparent"
rel="noopener noreferrer"
>
<NcMenuItem class="social-icon-wrapper group">
<GeneralIcon class="text-gray-500 group-hover:text-gray-800 my-0.5" icon="twitter" />
<span class="menu-btn"> {{ $t('labels.twitter') }} </span>

2
packages/nc-gui/components/general/JoinCloud.vue

@ -28,7 +28,7 @@
</div>
<div class="self-stretch text-gray-500 text-base leading-normal">/ month / workspace</div>
<a href="https://app.nocodb.com/#/signin" target="_blank" class="!no-underline">
<a href="https://app.nocodb.com/#/signin" target="_blank" class="!no-underline" rel="noopener">
<NcButton class="text-gray-700 text-base font-semibold leading-tight py-4 w-full">Start for Free</NcButton>
</a>
<div class="self-stretch text-center text-gray-500 text-xs font-medium leading-none mb-4">

2
packages/nc-gui/components/general/ReleaseInfo.vue

@ -67,7 +67,7 @@ onMounted(async () => await fetchReleaseInfo())
<nuxt-link
no-prefetch
no-rel
rel="noopener"
class="!text-primary !no-underline"
to="https://docs.nocodb.com/getting-started/upgrading"
target="_blank"

6
packages/nc-gui/components/general/SocialCard.vue

@ -33,7 +33,7 @@ function openKeyboardShortcutDialog() {
<nuxt-link
v-e="['e:docs']"
no-prefetch
no-rel
rel="noopener"
class="text-primary !no-underline !text-current"
target="_blank"
to="https://docs.nocodb.com/"
@ -49,7 +49,7 @@ function openKeyboardShortcutDialog() {
<nuxt-link
v-e="['e:api-docs']"
no-prefetch
no-rel
rel="noopener"
class="text-primary !no-underline !text-current"
target="_blank"
to="https://apis.nocodb.com/"
@ -152,7 +152,7 @@ function openKeyboardShortcutDialog() {
<nuxt-link
v-e="['e:hiring']"
no-prefetch
no-rel
rel="noopener"
class="!no-underline !text-current"
target="_blank"
to="http://careers.nocodb.com"

Loading…
Cancel
Save