Fix: Updated connectors download URL (#3246)

This commit is contained in:
Mike
2024-10-11 11:04:07 +02:00
committed by GitHub
parent 689bed652d
commit 12518bcfb4
4 changed files with 7 additions and 8 deletions
@@ -96,7 +96,7 @@
<LayoutSidebarMenuGroup title="Resources" collapsible>
<NuxtLink
:to="connectorsPageUrl"
:to="downloadManagerUrl"
target="_blank"
@click="isOpenMobile = false"
>
@@ -189,7 +189,7 @@ import {
projectsRoute,
workspaceRoute,
workspacesRoute,
connectorsPageUrl
downloadManagerUrl
} from '~/lib/common/helpers/route'
import { useRoute } from 'vue-router'
import { useActiveUser } from '~~/lib/auth/composables/activeUser'
@@ -28,7 +28,7 @@
]"
target="_blank"
external
:href="connectorsPageUrl"
:href="downloadManagerUrl"
>
Connector downloads
</NuxtLink>
@@ -143,7 +143,7 @@ import { TailwindBreakpoints } from '~~/lib/common/helpers/tailwind'
import { useActiveUser } from '~~/lib/auth/composables/activeUser'
import { useAuthManager } from '~~/lib/auth/composables/auth'
import { useTheme } from '~~/lib/core/composables/theme'
import { connectorsPageUrl } from '~/lib/common/helpers/route'
import { downloadManagerUrl } from '~/lib/common/helpers/route'
import type { RouteLocationRaw } from 'vue-router'
import { ToastNotificationType, useGlobalToast } from '~~/lib/common/composables/toast'
import { useServerInfo } from '~/lib/core/composables/server'
@@ -34,7 +34,7 @@
</div>
<span v-else class="text-body-xs text-foreground-2 text-center select-none">
Use our
<NuxtLink target="_blank" :to="connectorsPageUrl" class="font-medium">
<NuxtLink target="_blank" :to="downloadManagerUrl" class="font-medium">
connectors
</NuxtLink>
to publish a {{ modelName ? '' : 'new model' }} version to
@@ -48,7 +48,7 @@
import { useFileImport } from '~~/lib/core/composables/fileImport'
import { useFileUploadProgressCore } from '~~/lib/form/composables/fileUpload'
import { ExclamationTriangleIcon } from '@heroicons/vue/24/solid'
import { connectorsPageUrl } from '~/lib/common/helpers/route'
import { downloadManagerUrl } from '~/lib/common/helpers/route'
import type { Nullable } from '@speckle/shared'
const props = defineProps<{
@@ -12,9 +12,8 @@ export const loginRoute = '/authn/login'
export const registerRoute = '/authn/register'
export const forgottenPasswordRoute = '/authn/forgotten-password'
export const onboardingRoute = '/onboarding'
export const downloadManagerRoute = '/download-manager'
export const serverManagementRoute = '/server-management'
export const connectorsPageUrl = 'https://speckle.systems/features/connectors/'
export const downloadManagerUrl = 'https://speckle.systems/download'
export const docsPageUrl = 'https://speckle.guide/'
export const forumPageUrl = 'https://speckle.community/'